codigocomentado/templates/base.html.tera

39 lines
787 B
Plaintext

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8"/>
<title>
{% block title %}
CódigoComentado - blog personal de kirbylife
{% endblock title %}
</title>
<link href="/static/css/base.css" rel="stylesheet"/>
{% block extracss %}
{% endblock extracss %}
</head>
<body>
<header>
<a href="/" class="logo">{{ title }}</a>
</header>
{#
<nav>
<a href="">⍉ Item 1</a>
<a href="">⍉ Item 2</a>
<a href="">⍉ Item 3</a>
</ul>
</nav>
#}
<div class="container">
{% block content %}
{% endblock content %}
</div>
<footer>
<span>
Hecho con Rust, Rocket y Emacs por <a href="https://kirbylife.gitlab.io">@kirbylife</a>
</span>
</footer>
{% block extrajs %}
{% endblock extrajs %}
</body>
</html>