forked from yousinix/portfolYOU
-
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.
* Create 4 sub-directories: about, articles, elements & projects. * Create tags.html. * Rename articles.html & projects.html to index.html. * Rename header.html to landing.html.
- Loading branch information
Showing
27 changed files
with
89 additions
and
88 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!-- Collect tags from all posts --> | ||
{% assign tags = blank %} | ||
{% for post in site.posts %} | ||
{% assign post_tags = post.tags | join:'|' | append:'|' %} | ||
{% if post_tags != '|' %} | ||
{% assign tags = tags | append:post_tags %} | ||
{% endif %} | ||
{% endfor %} | ||
{% assign tags = tags | split:'|' | uniq | sort %} | ||
|
||
<!-- List tags & related posts --> | ||
{% for tag in tags %} | ||
<div class="py-3"> | ||
<h4 id="{{ tag | slugify }}">{{ tag }}</h4> | ||
<ol> | ||
{% for post in site.posts %} | ||
{% if post.tags contains tag %} | ||
{% if post.external_url %} | ||
{% assign url = post.external_url %} | ||
{% else %} | ||
{% assign url = post.url | relative_url %} | ||
{% endif %} | ||
<a href="{{ url }}"><li>{{ post.title }}</li></a> | ||
<small class="text-muted"> - {{ post.date | date_to_long_string }}</small> | ||
<br/> | ||
{% endif %} | ||
{% endfor %} | ||
</ol> | ||
</div> | ||
<hr class="bg-light"> | ||
{% endfor %} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
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
File renamed without changes.
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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
layout: default | ||
--- | ||
|
||
{% include header.html %} | ||
{% include landing.html %} |
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 |
---|---|---|
|
@@ -8,4 +8,4 @@ | |
- arduino-visitor-counter | ||
--- | ||
|
||
{% include projects.html %} | ||
{% include projects/index.html %} |