My personal project and infrastructure archive
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.
 
 
 
 
 
 
nomicon/infra/website/crumbs/templates/base.html

30 lines
883 B

<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
<head>
{% block metatags %}{% endblock %}
<title>{{ SITENAME }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{# Mastodon verification link #}
<meta rel="me" href="https://octodon.social/@spacekookie">
<link href="{{ SITEURL }}/theme/css/crumbs.css" rel="stylesheet">
{% block css %}{% endblock %}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.1/css/all.css">
<link rel="alternate" type="application/rss+xml" href="{{ SITEURL }}/rss.xml" title="{{ SITENAME }} — Latest Posts" />
</head>
<body>
<div class="wrap">
{# Wrappen body block #}
{% block body %}{% endblock %}
{# Footer only used on 'home' #}
{% block footer %}{% endblock %}
</div>
</body>
</html>