Aggiustamenti alle pagine, pronta per il go-live.

This commit is contained in:
Emiliano Vavassori 2020-12-19 01:10:24 +01:00
parent 464c0bac4f
commit 6018e07841
9 changed files with 116 additions and 27 deletions

View file

@ -40,6 +40,7 @@
<meta name="twitter:image" content="">
{% endblock %}
<script src="https://kit.fontawesome.com/0a2f7dbe4a.js" crossorigin="anonymous"></script>
<script src="/js/jquery-3.5.1.min.js" crossorigin="anonymous"></script>
</head>
<body>
@ -79,8 +80,12 @@
<nav class="nav">
<ul class="list-bare">
{% for title, link in MENUITEMS %}
<li><a class="nav__link" href="{{ link }}">{{ title }}</a></li>
{% for name, link, blank in MENUITEMS %}
{% if blank %}
<li><a class="nav__link" href="{{ link }}" title="{{ name|striptags }}" target="_blank">{{ name }}</a></li>
{% else %}
<li><a class="nav__link" href="{{ link }}" title="{{ name|striptags }}">{{ name }}</a></li>
{% endif %}
{% endfor %}
{% if DISPLAY_PAGES_ON_MENU and pages %}{% for p in pages %}
@ -89,6 +94,7 @@
</ul>
</nav>
<script src="/js/livepointers.js" type="text/javascript"></script>
{% if DISPLAY_CATEGORIES_ON_MENU and categories %}
<h2>Categories</h2>