Renames url filter to url

This commit is contained in:
Zach Leatherman
2018-01-16 21:20:54 -06:00
parent cb83242ac7
commit 9fe4905608
3 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
<ul>
{%- for post in posts -%}
<li{% if post.url == url %} class="post-active"{% endif %}>
<a href="{{ post.url | absoluteUrl }}">{{ post.data.title }}</a>
<a href="{{ post.url | url }}">{{ post.data.title }}</a>
Tags: {{ post.data.tags | join(", ") }}
{%- if post.url == url %}
(You are here)