about.html

 1{% for post in site.posts %}
 2  {% if post.categories contains page.category %}
 3    {% for category in site.data.categories %}
 4      {% if category.slug == post.category %}
 5        {% assign category_name =  category.name %}
 6      {% endif %}
 7    {% endfor %}
 8  {% endif %}
 9{% endfor %}
10
11<div class="about">
12    <div class="about__devider">*****</div>
13    <div class="about__text">
14        <a href="{{ post.category | prepend: site.url }}"> Other posts in {{ category_name }}</a>
15    </div>
16    <div class="about__text">
17        Written by the pseudonymous<strong> {% if page.author.fullname %} {{ page.author.fullname }} {% else %} {{ site.author.fullname }} {% endif %}</strong>
18        on <strong>{{ page.date | date: "%d %B %Y" }}</strong>
19    </div>
20</div>