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)
...@@ -51,8 +51,8 @@ ...@@ -51,8 +51,8 @@
<ul class="navbar-nav navbar-right mr auto"> <ul class="navbar-nav navbar-right mr auto">
{% 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 class="nav-item {% if output_file == url %}active{% endif %}">
<a class="nav-link" href="{{ genurl( url ) }}" >{{ title }}</a> <a class="nav-link" href="/{{ genurl( url ) }}" >{{ title }}</a>
</li> </li>
{% elif url is iterable %} {% elif url is iterable %}
<li class="nav-item dropdown <li class="nav-item dropdown
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{{- title }}</a> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{{- title }}</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown"> <div class="dropdown-menu" aria-labelledby="navbarDropdown">
{% for title,item_url in url %} {% for title,item_url in url %}
<a class="dropdown-item {% if item_url == output_url %}active{% endif %}" href="{{ genurl( item_url ) }}">{{ title }}</a> <a class="dropdown-item {% if item_url == output_file %}active{% endif %}" href="/{{ genurl( item_url ) }}">{{ title }}</a>
{% endfor %} {% endfor %}
</div> </div>
</li> </li>
......
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}{{ SITENAME }} - {{ page.title|striptags }}{%endblock%}
{% block head %} {% block head %}
{{ super() }} {{ super() }}
<link rel='stylesheet' type='text/css' href="/theme/css/page.css" /> <link rel='stylesheet' type='text/css' href="/theme/css/page.css" />
......