diff options
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..04120ba --- /dev/null +++ b/templates/base.html @@ -0,0 +1,48 @@ +<!DOCTYPE HTML> + +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="author" content="Rubén Beltrán del Río"> + <meta name="description" content="{{ section.description }}"> + <meta name="theme-color" content="#0000f5"> + <meta name="fediverse:creator" content="@ruben@friendship.quest" /> + + <title>Rubén Beltrán del Río — {{ section.title }}</title> + + <link rel="preload" href="/font/LibreCaslonCondensed[wdth,wght].woff2" as="font" type="font/woff2" crossorigin> + <link rel="preload" href="/font/LibreCaslonCondensed-Italic[wght].woff2" as="font" type="font/woff2" crossorigin> + <link rel="preload" href="/font/Ronzino-Medium.woff2" as="font" type="font/woff2" crossorigin> + <link rel="preload" href="/font/Ronzino-Bold.woff2" as="font" type="font/woff2" crossorigin> + + <link rel="stylesheet" type="text/css" href="/css/style.css"> + <link rel="author" href="humans.txt"> + + <script type="module" src="/js/animation.js"></script> + </head> + <body> + <header> + <h1> + <canvas width="60" height="60" aria-hidden="true"></canvas> + <a href="/">Rubén Beltrán del Río</a> + </h1> + <p>✷ Holistic + tech + services ✷</p> + </header> + <main> + {% block content %}{% endblock %} + </main> + <footer> + <menu> + <ul> + <li><a href="/impressum">Impressum</a></li> + <li><a href="/privacy-policy">Privacy Policy</a></li> + <li>Check out <a href="https://r.bdr.sh">my personal website.</a></li> + </ul> + </menu> + </footer> + </body> +</html> + |