Automatically add redirects for external URLs
This commit is contained in:
parent
d14288636c
commit
192cfd534e
|
@ -1,4 +1,5 @@
|
||||||
---
|
---
|
||||||
|
use: [posts]
|
||||||
---
|
---
|
||||||
/about /
|
/about /
|
||||||
/articles/2010/04/05/style-drupal-6s-taxonomy-lists-php-css-and-jquery /articles/style-drupal-6s-taxonomy-lists-php-css-and-jquery
|
/articles/2010/04/05/style-drupal-6s-taxonomy-lists-php-css-and-jquery /articles/style-drupal-6s-taxonomy-lists-php-css-and-jquery
|
||||||
|
@ -154,3 +155,7 @@
|
||||||
/twitter {{ site.twitter.url }}
|
/twitter {{ site.twitter.url }}
|
||||||
/work /experience
|
/work /experience
|
||||||
/youtube {{ site.youtube.channel.url }}
|
/youtube {{ site.youtube.channel.url }}
|
||||||
|
|
||||||
|
{% for post in data.posts if post.external_url %}
|
||||||
|
/{{ post.url }} {{ post.external_url }}
|
||||||
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue