We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f04141 + 6b9ad6f commit cafbb05Copy full SHA for cafbb05
themes/vocabulary_theme/templates/blog-post.html
@@ -56,9 +56,15 @@ <h4 class="category-title">Categories</h4>
56
<h5 class="title">Posts in the {{ series.name }} series</h5>
57
<ul class="posts">
58
{% for post in series.children.order_by('pub_date') %}
59
- <li>
60
- <i class="icon circle-filled"></i><a href="{{ post|url }}">{{ post.title }}</a>
61
- </li>
+ {% if post.path==this.path %}
+ <li class="has-color-dark-slate-gray">
+ <i class="icon circle-filled"></i>{{ post.title }}
62
+ </li>
63
+ {% else %}
64
+ <li>
65
+ <i class="icon circle-filled"></i><a href="{{ post|url }}">{{ post.title }}</a>
66
67
+ {% endif %}
68
{% endfor %}
69
</ul>
70
</div>
0 commit comments