edgarluque.com/templates/base.html
2023-11-30 10:47:55 +01:00

59 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Edgar Luque" />
{% block seo %}
<meta name="description" content="My personal website." />
<meta property="og:title" content="Home" />
<meta property="og:description" content="My personal website." />
<meta property="og:type" content="article" />
<meta property="twitter:title" content="Home" />
<meta property="twitter:description" content="My personal website." />
{% endblock %}
<meta property="twitter:creator" content="@edgluq" />
<meta property="twitter:site" content="@edgluq" />
<title>{% block title %}Home{% endblock %} | Edgar Luque</title>
<link rel="stylesheet" href="/style.css?v=3" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
{% block rss %}
<link rel="alternate" type="application/atom+xml" title="RSS" href="/atom.xml">
{% endblock %}
</head>
<body>
<header class="container">
<a href="/" class="title"><p class="brand-title">Edgar Luque's Website</p></a>
<ul class="nav">
<li><a href="/categories">Categories</a></li>
<li>
<a href="/about" title="About me"
>About</a
>
</li>
<li>
<a href="/projects" title="Projects I created/contributed"
>Projects</a
>
</li>
<li>
<a href="https://github.com/edg-l" title="My GitHub profile"
>GitHub</a
>
</li>
</ul>
</header>
<section class="section container">
{% block content %} {% endblock %}
</section>
<section class="section container" style="border-top: 4px #FFAA00 solid">
<p>Copyright &copy; 2019-2023 Edgar Luque</p>
<p>This page is licensed under a <a href="https://creativecommons.org/licenses/by-nd/4.0/">Creative Commons Attribution-NoDerivatives 4.0 International License</a>.</p>
</section>
</body>
</html>