2020-03-21 15:55:50 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ site.lang }}" dir="{{ site.dir }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<base href="{% base %}" />
|
|
|
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
|
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
|
|
<meta name="theme-color" content="white"/>
|
|
|
|
<meta name="color-scheme" content="light"/>
|
2020-09-15 13:02:50 +00:00
|
|
|
<meta name="referrer" content="strict-origin-when-cross-origin"/>
|
2020-03-21 15:55:50 +00:00
|
|
|
|
|
|
|
<link href="assets/css/styles.css" rel="stylesheet">
|
2020-11-12 16:28:24 +00:00
|
|
|
|
|
|
|
{% comment %}
|
|
|
|
Webpack
|
|
|
|
{% endcomment %}
|
|
|
|
{% include_cached packs.html %}
|
|
|
|
|
|
|
|
{% comment %}
|
|
|
|
Agregar otras tipografías. Esto hace que las tipografías se carguen
|
|
|
|
lo más rápido posible y minimizar el tiempo en que se ven las del
|
|
|
|
navegador. En Firefox todavía no está soportado.
|
|
|
|
{% endcomment %}
|
|
|
|
{% include_cached preload_font.html font='assets/fonts/forkawesome-webfont.woff2' %}
|
|
|
|
|
|
|
|
<link rel="icon" type="image/svg+xml" href="public/favicon.svg">
|
|
|
|
<link rel="alternate icon" href="public/favicon.ico">
|
|
|
|
<link rel="mask-icon" href="public/favicon.svg" color="white">
|
2020-03-21 15:55:50 +00:00
|
|
|
|
|
|
|
{% seo %}
|
|
|
|
{% feed_meta %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-11-12 16:28:24 +00:00
|
|
|
{%- assign active_cache_key = page.url | menu_active_item | default: 'none' -%}
|
|
|
|
{%- include_cached navbar.html active_cache_key=active_cache_key %}
|
|
|
|
|
|
|
|
<main>
|
|
|
|
{{ content }}
|
2020-03-21 15:55:50 +00:00
|
|
|
</main>
|
2020-11-12 16:28:24 +00:00
|
|
|
|
|
|
|
{% include_cached footer.html %}
|
2020-03-21 15:55:50 +00:00
|
|
|
</body>
|
|
|
|
</html>
|