diff options
author | Valentin Popov <info@valentineus.link> | 2019-05-03 03:02:31 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-05-03 03:02:31 +0300 |
commit | 5668edea38da9fd1cad629db9c768ff19e62e094 (patch) | |
tree | 80f9ecfb2ad32304c61d1f7aecae955d7cf4ecf2 /_includes/navbar.html | |
parent | 515a3ed0a74bdc10861c12f3798b19c3c9ff44f9 (diff) | |
download | popov.link-5668edea38da9fd1cad629db9c768ff19e62e094.tar.xz popov.link-5668edea38da9fd1cad629db9c768ff19e62e094.zip |
Have added new structure sites
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_includes/navbar.html')
-rw-r--r-- | _includes/navbar.html | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/_includes/navbar.html b/_includes/navbar.html deleted file mode 100644 index 4171449..0000000 --- a/_includes/navbar.html +++ /dev/null @@ -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> |