mirror of
https://codeberg.org/sofiaritz/website.git
synced 2023-09-06 01:24:41 +00:00
Sofía Aritz
445ed938a5
All the data from the previous website is now here. The only thing missing now is integrating the weblog here.
53 lines
1.8 KiB
Text
53 lines
1.8 KiB
Text
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{% if title %} {{ title }} - {% endif %}sofi web</title>
|
|
<link rel="stylesheet" href="/css/app.css" type="text/css">
|
|
<link rel="stylesheet" href="/css/navbar.css" type="text/css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;1,300&family=Rubik:ital,wght@0,400;0,500;1,400;1,500&display=swap" type="text/css">
|
|
</head>
|
|
<body>
|
|
<a class="__hidden" href="https://hachyderm.io/@sofiaritz" rel="me">Mastodon</a>
|
|
<h1 class="top-title">sofi web</h1>
|
|
<div class="page-container">
|
|
<nav>
|
|
<div class="navbar">
|
|
<div>
|
|
<i>yo</i>
|
|
<ul>
|
|
<li><a href="/">inicio y sobre mí</a></li>
|
|
<li><a href="/contact">contacto</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<i>mi cabeza</i>
|
|
<ul>
|
|
<!-- <li><a href="/weblog">weblog</a></li> -->
|
|
<li><a href="/recommendations">recomendaciones</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<i>creaciones</i>
|
|
<ul>
|
|
<li><a href="/projects">proyectos</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<i>sitios</i>
|
|
<ul>
|
|
<li><a href="/links">enlaces</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<main>
|
|
{{ content | safe }}
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|