diff options
author | Valentin Popov <info@valentineus.link> | 2018-04-24 19:14:39 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-04-24 19:14:39 +0300 |
commit | bbf5de4c464b9d107f15c8c7233c74e36fc1e6d3 (patch) | |
tree | 6538417a2c12bff75ed0de3bbed136651cc08f90 | |
parent | d11e3a98d4ff39bbce8a9842c93356fac3d8f0b2 (diff) | |
download | popov.link-bbf5de4c464b9d107f15c8c7233c74e36fc1e6d3.tar.xz popov.link-bbf5de4c464b9d107f15c8c7233c74e36fc1e6d3.zip |
Rename
Signed-off-by: Valentin Popov <info@valentineus.link>
-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> |