14 lines
472 B
Text
14 lines
472 B
Text
<div class="blog-avatar-wrapper">
|
|
<img src="/img/blog-avatar.jpg" alt="blog profile picture" id="avatar">
|
|
</div>
|
|
<div class="true-content">
|
|
{{ content | safe }}
|
|
</div>
|
|
<div class="tag-list-wrapper">
|
|
<h2>tags</h2>
|
|
<ul class="tag-list">
|
|
{% for tag, posts in collections | exclude_collections("reviews", "all") %}
|
|
<li class="tag-item"><p>{{ tag | i18n }} ({{ posts | i18n_filter | length }})</p></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|