Fixed tag-cloud in foundation-default-colours to respect config by using example from docs: http://docs.getpelican.com/en/3.3.0/settings.html#tag-cloud
This commit is contained in:
@@ -147,7 +147,7 @@
|
|||||||
<h5>Tags</h5>
|
<h5>Tags</h5>
|
||||||
<ul class="tag-cloud">
|
<ul class="tag-cloud">
|
||||||
{% for tag in tag_cloud %}
|
{% for tag in tag_cloud %}
|
||||||
<li><a href="/tag/{{ tag.0|lower|replace(' ', '-') }}/" class="tag-{{ tag.1 }}">{{ tag.0 }}</a></li>
|
<li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0 }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -199,4 +199,4 @@
|
|||||||
$(document).foundation();
|
$(document).foundation();
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user