mirror of
				https://github.com/valentineus/popov.link.git
				synced 2025-11-04 06:49:45 +03:00 
			
		
		
		
	refactor(html): Update navigation bar
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
		@@ -1,22 +1,22 @@
 | 
			
		||||
{% assign pages = site.pages | where: "show", true %}
 | 
			
		||||
 | 
			
		||||
<nav role="navigation">
 | 
			
		||||
  <div class="container">
 | 
			
		||||
    <ul class="nav nav-pills">
 | 
			
		||||
      {% unless page.url == "/index.html" %}
 | 
			
		||||
        <li role="presentation"><a href="/">Home</a></li>
 | 
			
		||||
      {% endunless %}
 | 
			
		||||
    <ul class="nav-pills">
 | 
			
		||||
        {% unless page.url == "/index.html" %}
 | 
			
		||||
            <li role="presentation">
 | 
			
		||||
                <a class="nav-link" href="/">Home</a>
 | 
			
		||||
            </li>
 | 
			
		||||
        {% endunless %}
 | 
			
		||||
 | 
			
		||||
      <!-- Right side -->
 | 
			
		||||
      <ul class="nav nav-pills pull-right">
 | 
			
		||||
        {% for page in pages %}
 | 
			
		||||
          <li role="presentation">
 | 
			
		||||
            <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>
 | 
			
		||||
          </li>
 | 
			
		||||
        {% endfor %}
 | 
			
		||||
      </ul>
 | 
			
		||||
        <!-- Right side -->
 | 
			
		||||
        <ul class="nav-pills nav-right">
 | 
			
		||||
            {% for page in pages %}
 | 
			
		||||
                <li role="presentation">
 | 
			
		||||
                    <a class="nav-link" 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>
 | 
			
		||||
                </li>
 | 
			
		||||
            {% endfor %}
 | 
			
		||||
        </ul>
 | 
			
		||||
    </ul>
 | 
			
		||||
  </div>
 | 
			
		||||
</nav>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user