mirror of
https://github.com/edg-l/edgarluque.com.git
synced 2024-11-10 01:58:22 +00:00
51 lines
1.8 KiB
HTML
51 lines
1.8 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"
|
|
/>
|
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="/blog/atom.xml">
|
|
</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="/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 container">
|
|
{% block content %} {% endblock %}
|
|
</section>
|
|
</body>
|
|
</html>
|