31 lines
1019 B
HTML
31 lines
1019 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ DEFAULT_LANG }}">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
|
|
||
|
<title>{% block title %}{% endblock %}</title>
|
||
|
<meta name="generator" content="Pelican" />
|
||
|
{% block meta %}{% endblock %}
|
||
|
{% block opengraph %}{% endblock %}
|
||
|
|
||
|
{% assets output="css/main.%(version)s.css", "css/main.css" %}
|
||
|
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ ASSET_URL }}" />
|
||
|
{% endassets %}
|
||
|
{% block styles %}{% endblock %}
|
||
|
|
||
|
<link rel="alternate" type="application/atom+xml" href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" />
|
||
|
<link rel="sitemap" type="application/xml" title="Sitemap" href="{{ SITEURL }}/sitemap.xml" />
|
||
|
</head>
|
||
|
<body>
|
||
|
{% include "partials/_header.html" %}
|
||
|
|
||
|
<main role="main" class="container">
|
||
|
{% block content %}{% endblock %}
|
||
|
</main>
|
||
|
|
||
|
{% include "partials/_footer.html" %}
|
||
|
</body>
|
||
|
</html>
|