forked from agusmakmun/agusmakmun.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f431d9d
commit b2aa19d
Showing
22 changed files
with
708 additions
and
667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
_site* | ||
.sass-cache | ||
.jekyll-metadata | ||
*backup/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
{% if site.enableTags == true %} | ||
{% 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 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 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 %} | ||
{% assign taglist = tags | split: '|' | sort %} | ||
{% for tag in taglist %} | ||
<span class="tag-filter tag-cloud" data-tag="{{ tag | downcase }}">{{ tag }}</span> | ||
{% endfor %} | ||
</div> | ||
{% endif %} | ||
{% endif %} |
Oops, something went wrong.