Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (1)
...@@ -36,52 +36,40 @@ ...@@ -36,52 +36,40 @@
<body> <body>
<header> <header>
<!-- Navigation --> <!-- Navigation -->
<nav class="navbar navbar-default"> <nav class="navbar navbar-expand-lg navbar-light">
<div class="container-fluid"> <a class="navbar-brand" href="{{ SITEURL }}">
<!-- Brand and toggle get grouped for better mobile display --> <img id="logo" src="{{ SITELOGO }}" alt="{{ SITENAME }}">
<div class="navbar-header page-scroll"> </a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse"> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar-collapse" aria-controls="navbar-collapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span> <span class="navbar-toggler-icon"></span>
<span class="glyphicon glyphicon-th-list"></span> </button>
</button>
<a class="navbar-brand" href="{{ SITEURL }}">
<img id="logo" src="{{ SITELOGO }}" alt="{{ SITENAME }}">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="navbar-collapse">
<div class="collapse navbar-collapse" id="navbar-collapse"> <ul class="navbar-nav navbar-right mr auto">
<ul class="nav navbar-nav navbar-right" id="menuitem-list"> {% for title,url in MENUITEMS %}
{% for title,url in MENUITEMS %} {% if url is string %}
{% if url is string %} <li class="nav-item{% if output_file == url %}active{% endif %}">
<li {% if output_file == url %}class="active"{% endif %}> <a class="nav-link" href="{{ genurl( url ) }}" >{{ title }}</a>
<a href="{{ genurl( url ) }}" >{{ title }}</a> </li>
</li> {% elif url is iterable %}
{% elif url is iterable %} <li class="nav-item dropdown
<li class="btn-group {%- for title,item_url in url -%}
{%- for title,item_url in url -%} {%- if item_url == output_file -%}
{%- if item_url == output_file -%} {{- ' active' -}}
{{- ' active' -}} {%- endif -%}
{%- endif -%} {%- endfor -%}
{%- endfor -%} ">
"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{{- title }}</a>
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> <div class="dropdown-menu" aria-labelledby="navbarDropdown">
{{- title }}<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
{% for title,item_url in url %} {% for title,item_url in url %}
<li {% if item_url == output_url %}class="active"{% endif %}> <a class="dropdown-item {% if item_url == output_url %}active{% endif %}" href="{{ genurl( item_url ) }}">{{ title }}</a>
<a href="{{ genurl( item_url ) }}">{{ title }}</a>
</li>
{% endfor %} {% endfor %}
</ul> </div>
{% endif %} </li>
{% endfor %} {% endif %}
</ul> {% endfor %}
</div> </ul>
<!-- /.navbar-collapse -->
</div> </div>
<!-- /.container -->
</nav> </nav>
<!-- Page Header --> <!-- Page Header -->
......