mirror of
https://github.com/c0de-archive/pelican-mg.git
synced 2025-07-30 13:30:17 +00:00
tagcloud + using uikit 2.27.4 + wip tag-filtering navbar buttons
This commit is contained in:
19
templates/tagcloud.html
Normal file
19
templates/tagcloud.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Tag cloud{% endblock %}
|
||||
{% block description %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<ul class="mg-tagcloud">
|
||||
{% for tag in tag_cloud if not tag.0.name.startswith('lang:') %}
|
||||
<li class="mg-cloud-tag mg-cloud-tag-size-{{ tag.1 }}">
|
||||
<a href="{{ SITEURL }}/{{ tag.0.url }}">
|
||||
{{ tag.0 }}
|
||||
{% if TAG_CLOUD_BADGE %}
|
||||
<span class="mg-cloud-tag-badge">({{ tag.2 }})</span>
|
||||
{% endif %}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock %}
|
||||
|
Reference in New Issue
Block a user