diff options
| -rw-r--r-- | _data/external_links.yml (renamed from _data/additional_links.yml) | 0 | ||||
| -rw-r--r-- | _includes/external_links.html (renamed from _includes/additional_links.html) | 4 | ||||
| -rw-r--r-- | _pages/index.html | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/_data/additional_links.yml b/_data/external_links.yml index e5fab32..e5fab32 100644 --- a/_data/additional_links.yml +++ b/_data/external_links.yml diff --git a/_includes/additional_links.html b/_includes/external_links.html index ddc0c97..4a04694 100644 --- a/_includes/additional_links.html +++ b/_includes/external_links.html @@ -1,9 +1,9 @@  <p class="social-links"> -  {% for link in site.data.additional_links %} +  {% for link in site.data.external_links %}      <a href="{{ link.url | strip_newlines | strip_html | strip | normalize_whitespace | uri_escape }}">        {{ link.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}      </a> -    <!-- Separation trait --> +    <!-- Separation -->      {% unless forloop.last %}        <span>|</span>      {% endunless %} diff --git a/_pages/index.html b/_pages/index.html index 742d8da..30f8c6d 100644 --- a/_pages/index.html +++ b/_pages/index.html @@ -6,7 +6,7 @@ layout: page  {% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}  <!-- Links to external resources --> -{% include additional_links.html %} +{% include external_links.html %}  {% for year in postsByYear %}    <h2>{{ year.name | strip_newlines | strip_html | strip | normalize_whitespace | slugify }}</h2> | 
