0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-03 16:10:26 +03:00

Have added new structure sites

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2019-05-03 04:02:31 +04:00
parent 515a3ed0a7
commit 5668edea38
15 changed files with 65 additions and 436 deletions

View File

@ -1,45 +0,0 @@
{% assign pages = site.pages | where: "show", true %}
<div class="navigation-container">
<h1 class="navigation-header">
{{ page.title | default: site.title | strip_newlines | strip_html| strip | normalize_whitespace | smartify | xml_escape }}
</h1>
<input id="toggle-button" class="toggle-button" type="checkbox" />
<label class="toggle-label" for="toggle-button">
<span></span>
<span></span>
<span></span>
</label>
<nav class="navigation" role="navigation">
<ul class="navigation-footer">
{% for item in site.data.social_links %}
<li>
<a target="_blank" href="{{ item.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}">
{{ item.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
</a>
</li>
{% endfor %}
</ul>
<ul class="navigation-pills">
<li class="navigation-item" role="presentation">
<h5>
<a href="/">Home</a>
</h5>
</li>
{% for page in pages%}
<li class="navigation-item" role="presentation">
<h5>
<a href="{{ page.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}">
{{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
</a>
</h5>
</li>
{% endfor %}
</ul>
</nav>
</div>