pyro/templates/base.html
Freyja Wildes 61952116b6 Restarted the project from zero
This theme was started years ago when I was first attempting to build a
blog and personal website using Pelican. In February 2025, I retrieved
it from an server I had. It was then in a very early stage. I reworked
it completely with more modern CSS/HTML (things had changed a *lot*).

This theme aims to be simple, accessible, readable. My own needs and
preferences influence the choicies I make.
2025-02-16 14:11:49 +01:00

44 lines
1.6 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{% block meta_description %}{{ SITENAME }}, {{ TAGLINE }}{% endblock meta_description %}">
{% if FEED_ALL_ATOM %}
<link rel="alternate" href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" title="{{ SITENAME }} Full Atom Feed"/>
{% endif %}
{% if FEED_ALL_RSS %}
<link rel="alternate" href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}" type="application/rss+xml" title="{{ SITENAME }} Full RSS Feed"/>
{% endif %}
{% if FEED_ATOM %}
<link rel="alternate" href="{{ FEED_DOMAIN }}/{{ FEED_ATOM }}" type="application/atom+xml" title="{{ SITENAME }} Atom Feed"/>
{% endif %}
{% if FEED_RSS %}
<link rel="alternate" href="{{ FEED_DOMAIN }}/{{ FEED_RSS }}" type="application/rss+xml" title="{{ SITENAME }} RSS Feed"/>
{% endif %}
{% block head %}
<title>{% block page_title %}{{ SITENAME }}{% endblock %}</title>
{% endblock head %}
{% if FAVICON %}
<link href="//{{ FAVICON }}" rel="icon">
{% endif %}
{% block head_css %}
<link rel="stylesheet" href="/theme/css/pyro.css">
{% endblock %}
</head>
<body>
{% block banner %}
{% include 'banner.html' %}
{% endblock %}
<div class="content">
{% block content %}
{% endblock %}
</div>
{% include 'footer.html' %}
</body>
</html>