19 lines
607 B
Django/Jinja
19 lines
607 B
Django/Jinja
<!DOCTYPE html>
|
|
<html lang="en" data-theme="light">
|
|
<head>
|
|
{% block head %}
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<meta name="description" content="the main Adrianux page">
|
|
<link rel="canonical" href="https://adrianux.net/">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/pico.css') }}" />
|
|
<title>{% block title %}{% endblock %} - Adrianux.net</title>
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<h1>{{ self.title() }}</h1>
|
|
<article>{% block content %}{% endblock %}</article>
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|