Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-04-24 20:14:39 +04:00
parent d11e3a98d4
commit bbf5de4c46
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
3 changed files with 3 additions and 3 deletions

View File

@ -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 %}

View File

@ -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>