forked from varia/varia.website
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.
50 lines
2.6 KiB
50 lines
2.6 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="/{{ THEME_STATIC_DIR }}css/pygment.css" />
|
|
<link rel="stylesheet" type="text/css" href="/{{ THEME_STATIC_DIR }}css/{{ CSS_FILE }}" />
|
|
{% endblock head %}
|
|
</head>
|
|
|
|
<body id="index" class="home">
|
|
<div class="buttons top">
|
|
{% if I18N_SUBSITES %}
|
|
{% for lang, url in I18N_SUBSITES.items() %}
|
|
{% if DEFAULT_LANG == 'nl' %}
|
|
{% if lang == 'nl' %}
|
|
<li><em>varia</em> kent de volgende gedaantes: </li>
|
|
<li><a href="https://we.lurk.org/postorius/lists/varia.we.lurk.org/" target="_blank"><i class="fa fa-rss "></i>mailinglijst </a></li>
|
|
<li><a href="feeds/all-{{ DEFAULT_LANG }}.rss.xml" type="application/rss+xml"><i class="fa fa-rss "></i>RSS feed </a></li>
|
|
<!-- <li><a href="#"><i class="fa fa-rss "></i>.ics kalendar</a></li> -->
|
|
<li {% if DEFAULT_LANG == 'nl' %} class="active"><a href="/">Nederlands</a>{% else %}><a href="/">Nederlands</a>{% endif %}</li>
|
|
<li{% if DEFAULT_LANG == 'en' %} class="active"><a href="/en/">English</a>{% else %}><a href="/en/">English</a>{% endif %}</li>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if DEFAULT_LANG == 'en' %}
|
|
{% if lang == 'en' %}
|
|
<li><em>varia</em> comes in many forms: </li>
|
|
<li><a href="https://we.lurk.org/postorius/lists/varia.we.lurk.org/" target="_blank"><i class="fa fa-rss "></i>mailinglist </a></li>
|
|
<li><a href="feeds/all-{{ DEFAULT_LANG }}.rss.xml" type="application/rss+xml"><i class="fa fa-rss "></i>RSS feed </a></li>
|
|
<!-- <li><a href="#"><i class="fa fa-rss "></i>.ics calendar</a></li> -->
|
|
<li {% if DEFAULT_LANG == 'nl' %} class="active"><a href="/">Nederlands</a>{% else %}><a href="/">Nederlands</a>{% endif %}</li>
|
|
<li{% if DEFAULT_LANG == 'en' %} class="active"><a href="/{{lang}}">English</a>{% else %}><a href="/{{lang}}">English</a>{% endif %}</li>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
<br>
|
|
</div>
|
|
<div class="buttons top">
|
|
|
|
</div>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|
|
|