mirror of
https://github.com/kirsle/kirsle.net
synced 2024-11-14 21:09:28 +00:00
25 lines
999 B
HTML
25 lines
999 B
HTML
|
{# Custom category list for kirsle.net <ul>-based design #}
|
||
|
{% for tag in tags %}
|
||
|
{% if not tag["small"] %}
|
||
|
<ul>» <a href="{{ url_for('blog.category', category=tag['category']) }}">{{ tag['category'] }}</a>
|
||
|
<small>({{ tag['count'] }})</small></ul>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
{% if has_small %}
|
||
|
</ul><!-- end list from layout.html -->
|
||
|
<div id="blog_show_more" style="display: none">
|
||
|
<ul>
|
||
|
{% for tag in tags %}
|
||
|
{% if tag["small"] %}
|
||
|
» <a href="{{ url_for('blog.category', category=tag['category']) }}">{{ tag['category'] }}</a>
|
||
|
<small>({{ tag['count'] }})</small><br>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div id="blog_show_less" style="display: block">
|
||
|
<ul>
|
||
|
<li>¤ <a href="#" onClick="$('#blog_show_less').hide(); $('#blog_show_more').show(1000); return false">Show more...</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
{% endif %}
|