You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
628 B

10 years ago
<script src="/dist/index.js"></script>
{%- set categories = resource.pages|get_all_category %}
<aside class="aside-container">
10 years ago
<ul>
{%- for category in categories %}
10 years ago
{%- set items = resource.pages|find_category(category) %}
<li>
<h4>{{category}}</h4>
<ul>
{%- for item in items %}
<li class="{%- if item.title === post.title %}current{%- endif %}">
10 years ago
<a href="{{permalink_url(item)}}">
{{item.title}}
<span class="chinese">{{item.meta.chinese}}</span>
</a>
</li>
{%- endfor %}
</ul>
</li>
{%- endfor %}
10 years ago
</ul>
</aside>