2021-12-23 16:38:19 +00:00
<!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 %}
2024-07-01 11:56:54 +00:00
< meta name = "description" content = "{{ config.description }}" / >
2024-07-01 11:59:58 +00:00
< meta property = "og:title" content = "{{ config.title }}" / >
2024-07-01 11:56:54 +00:00
< meta property = "og:description" content = "{{ config.description }}" / >
2021-12-23 16:38:19 +00:00
< meta property = "og:type" content = "article" / >
2024-07-01 11:56:54 +00:00
< meta property = "twitter:title" content = "{{ config.title }}" / >
< meta property = "twitter:description" content = "{{ config.description }}" / >
2021-12-23 16:38:19 +00:00
{% endblock %}
< meta property = "twitter:creator" content = "@edgluq" / >
< meta property = "twitter:site" content = "@edgluq" / >
2024-07-01 12:02:59 +00:00
< title > {% block title %}{{ config.title }}{% endblock %}< / title >
2023-11-30 09:47:55 +00:00
< link rel = "stylesheet" href = "/style.css?v=3" / >
2022-10-21 06:38:42 +00:00
< 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" >
2023-06-27 09:57:32 +00:00
{% block rss %}
< link rel = "alternate" type = "application/atom+xml" title = "RSS" href = "/atom.xml" >
{% endblock %}
2021-12-23 16:38:19 +00:00
< / head >
< body >
< header class = "container" >
2021-12-24 11:02:07 +00:00
< a href = "/" class = "title" > < p class = "brand-title" > Edgar Luque's Website< / p > < / a >
2021-12-24 07:36:36 +00:00
< ul class = "nav" >
2021-12-24 11:02:07 +00:00
< li > < a href = "/categories" > Categories< / a > < / li >
2022-11-10 22:19:55 +00:00
< li >
< a href = "/about" title = "About me"
>About< /a
>
< / li >
2021-12-24 07:36:36 +00:00
< li >
< a href = "/projects" title = "Projects I created/contributed"
>Projects< /a
>
< / li >
2024-02-13 09:04:21 +00:00
< li >
< a href = "/misc" title = "Miscellaneous stuff"
>Misc< /a
>
< / li >
2021-12-24 07:36:36 +00:00
< li >
< a href = "https://github.com/edg-l" title = "My GitHub profile"
>GitHub< /a
>
< / li >
< / ul >
2021-12-23 16:38:19 +00:00
< / header >
2021-12-24 07:51:39 +00:00
< section class = "section container" >
{% block content %} {% endblock %}
2021-12-23 16:38:19 +00:00
< / section >
2023-05-15 10:49:00 +00:00
2024-02-15 09:30:47 +00:00
< section class = "section container footer" >
2024-02-09 10:08:09 +00:00
< p > Copyright © 2019-2024 Edgar Luque< / p >
2023-05-15 10:49:00 +00:00
< 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 >
2021-12-23 16:38:19 +00:00
< / body >
< / html >