mirror of
https://github.com/aljazceru/cryptoanarchywiki.github.io.git
synced 2025-12-17 05:04:21 +01:00
Strip away theme demo content
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
{% if site.enableTags == true %}
|
||||
<div id="tag-filter" class="tag-group">
|
||||
<span class="tag-filter tag-cloud all active">All</span>
|
||||
|
||||
{% assign tagarray = site.tagarray %}
|
||||
{% for project in site.data.projects %}
|
||||
{% for tag in project.tags %}
|
||||
{% assign tagarray = tagarray | push: tag %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
{% assign tags = tagarray[1] %}
|
||||
{% for item in tagarray %}
|
||||
{% assign tagDown = item | downcase %}
|
||||
{% assign tagComp = tags | downcase %}
|
||||
{% unless tagComp contains tagDown %}
|
||||
{% capture tags %}{{ tags }}|{{ item }}{% endcapture %}
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
|
||||
{% assign taglist = tags | split: '|' | sort %}
|
||||
{% for tag in taglist %}
|
||||
<span class="tag-filter tag-cloud" data-tag="{{ tag | downcase }}">{{ tag }}</span>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user