tilde-site/templates/base.html

24 lines
599 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Ydreniv's ~ webpage</title>
<link rel="stylesheet" href="{{ config.base_url }}/base.css">
{% block stylesheet %}
{% endblock %}
{% block rss %}
<link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path="atom.xml", trailing_slash=false) }}">
{% endblock %}
{% block head_extra %}
{% endblock %}
</head>
<body>
{% block content %} {% endblock %}
{% include "includes/h-card.html" %}
{% include "includes/webmentions.html" %}
</body>
</html>