Varia's website
https://varia.zone
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.
47 lines
1.7 KiB
47 lines
1.7 KiB
<!DOCTYPE html>
|
|
<html lang="{{ DEFAULT_LANG }}">
|
|
<head>
|
|
{% block head %}
|
|
<title>{% block title %}{{ SITENAME }} - {{SITESUBTITLE}}{% endblock title %}</title>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="{{ SITEURL}}/favicon.ico" type="image/x-icon">
|
|
<link rel="shortcut icon" href="{{ SITEURL }}/favicon.ico" type="image/x-icon">
|
|
|
|
{% from 'syndication.html' import syndication with context %}
|
|
{{ syndication(article) }}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/pygment.css" />
|
|
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/{{ CSS_FILE }}" />
|
|
{% endblock head %}
|
|
</head>
|
|
|
|
<body id="index" class="home">
|
|
<div id="translation">
|
|
{% if lang_siteurls %}
|
|
{% for lang, url in lang_siteurls.items() %}
|
|
{% if url == '/nl'%}
|
|
<li{% if lang == DEFAULT_LANG %} class="active"{% endif %}><a href="/">{{ lang }}</a></li>
|
|
{% endif %}
|
|
{% if url == '/en'%}
|
|
<li{% if lang == DEFAULT_LANG %} class="active"{% endif %}><a href="{{ url }}/">{{ lang }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
<br>
|
|
{% if FEED_ALL_RSS %}
|
|
<li><a href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}" type="application/rss+xml"><i class="fa fa-rss "></i> RSS</a></li>
|
|
{% endif %}
|
|
</div>
|
|
<header id="banner">
|
|
{% for p in pages %}
|
|
{% if p.title == 'header' %}
|
|
<div id="title">{{ p.content }}</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</header>
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|
|
|