mirror of
https://github.com/edg-l/edgarluque.com.git
synced 2024-11-09 17:48:22 +00:00
50 lines
1.7 KiB
HTML
50 lines
1.7 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" />
|
|
<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,400;0,700;1,400&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<header class="container">
|
|
<p class="brand-title">Edgar Luque's Website</p>
|
|
<ul class="nav">
|
|
<li><a href="/">Blog</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>
|
|
<li><a href="/blog/atom.xml">RSS</a></li>
|
|
</ul>
|
|
</header>
|
|
<section class="section">
|
|
<div class="container">{% block content %} {% endblock %}</div>
|
|
</section>
|
|
</body>
|
|
</html>
|