23 lines
571 B
HTML
23 lines
571 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<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>
|