https://multilaterale.group pelican files && website content
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

48 lines
1.9 KiB

<!DOCTYPE html>
<html lang="{% block html_lang %}{{ DEFAULT_LANG }}{% endblock html_lang %}">
<head>
{% block head %}
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="{{SITEURL}}/theme/style.css">
<link href="https://fonts.googleapis.com/css?family=Kotta+One&display=swap" rel="stylesheet">
{% block rss %}
{% endblock rss %}
{% endblock head %}
</head>
<body id="index" class="home">
{% block menu %}
<header id="banner" class="body">
<a href="{{ SITEURL }}/"><img id="banner_img"src="/theme/multilaterale_text.svg"></a>
</header><!-- /#banner -->
<nav id="menu"><ul>
{% for title, link in MENUITEMS %}
<li><a href="{{ link }}">{{ title }}</a></li>
{% endfor %}
{% if DISPLAY_PAGES_ON_MENU %}
{% for p in pages %}
<li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a> - </li>
{% endfor %}
{% endif %}
{% if DISPLAY_CATEGORIES_ON_MENU %}
{% for cat, null in categories %}
{% if loop.last %}
<li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a> </li>
{% else %}
<li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a> - </li>
{%endif%}
{% endfor %}
{% endif %}
</ul></nav><!-- /#menu -->
{% endblock menu %}
{% block content %}
{% endblock %}
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
</address><!-- /#about -->
</footer><!-- /#contentinfo -->
</body>
</html>