aboutsummaryrefslogtreecommitdiffstats
path: root/django/core/templates/core/base.djhtml
blob: d9afd5a2be2470f076ae737785658dde74c0dfb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{% load static %}
<!Doctype html>
<html lang="en">
    <head>
        <meta charset="UTF-8"/>
        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
        <title>Sitio personal de Jesús</title>
        <meta content="index,follow" name="robots"/>
        <meta name="owner" content="Jesús E.">
        <meta name="author" content="Jesus E.">
        <!-- OpenGraph Meta Tags -->
        <meta property="og:url" content="https://jestupinanm.ga/">
        <meta property="og:type" content="website">
        <meta property="og:title" content="Hola, soy un entusiasta de tecnologías web... Jesús E.">
        <meta property="og:description" content="FrontEnd, BackEnd, DevOps e Investigador de Software | También colaboro con Proyectos de Software Libre como Hyperbola Project.">
        <meta property="og:image" content="{% static 'core/images/myself.jpeg' %}">
        <!-- Twitter Meta Tags -->
        <meta name="twitter:card" content="summary_large_image">
        <meta property="twitter:domain" content="jestupinanm.ga">
        <meta property="twitter:url" content="https://jestupinanm.ga/">
        <meta name="twitter:title" content="Hola, soy un entusiasta de tecnologías web... Jesús E.">
        <meta name="twitter:description" content="FrontEnd, BackEnd, DevOps e Investigador de Software | También colaboro con Proyectos de Software Libre como Hyperbola Project.">
        <meta name="twitter:image" content="{% static 'core/images/myself.jpeg' %}"/>
        <!-- icons -->
        <link rel="apple-touch-icon" sizes="57x57" href="{% static 'core/images/apple-icon-57x57.png' %}">
        <link rel="apple-touch-icon" sizes="60x60" href="{% static 'core/images/apple-icon-60x60.png' %}">
        <link rel="apple-touch-icon" sizes="72x72" href="{% static 'core/images/apple-icon-72x72.png' %}">
        <link rel="apple-touch-icon" sizes="76x76" href="{% static 'core/images/apple-icon-76x76.png' %}">
        <link rel="apple-touch-icon" sizes="114x114" href="{% static 'core/images/apple-icon-114x114.png' %}">
        <link rel="apple-touch-icon" sizes="120x120" href="{% static 'core/images/apple-icon-120x120.png' %}">
        <link rel="apple-touch-icon" sizes="144x144" href="{% static 'core/images/apple-icon-144x144.png' %}">
        <link rel="apple-touch-icon" sizes="152x152" href="{% static 'core/images/apple-icon-152x152.png' %}">
        <link rel="apple-touch-icon" sizes="180x180" href="{% static 'core/images/apple-icon-180x180.png' %}">
        <link rel="icon" type="image/png" sizes="16x16" href="{% static 'core/images/favicon-16x16.png' %}">
        <link rel="icon" type="image/png" sizes="32x32" href="{% static 'core/images/favicon-32x32.png' %}">
        <link rel="icon" type="image/png" sizes="96x96" href="{% static 'core/images/favicon-96x96.png' %}">
        <link rel="icon" type="image/png" sizes="192x192"  href="{% static 'core/images/android-icon-192x192.png' %}">

        <link rel="manifest" href="{% static 'core/images/manifest.json' %}">

        <link rel="stylesheet" type="text/css"
              href="{% static 'core/lib/normalize-css/normalize.css' %}"
              integrity="sha512-Ol+aW3PNQAjGdD0KCyelmB8whw85m+OUP6XSSFSfCC9CobIfc3/PpYI5y8G1KINs61i24t+qPh6ecNOkKIwj1g=="/>
        <link rel="stylesheet" type="text/css"
              href="{% static 'core/css/estilos.min.css' %}"
              integrity="sha512-F6X8y3VnnT7bzn002FiANw9eGVVDdKHpkNc6TVytQmOgV0j7M7/VUXUcAL5LaEBIuTuKGtR86qCS4VLA6oJW4g=="/>
    </head>
    <body>
        <!-- Header and Menu -->
        <header itemscope itemtype="https://schema.org/WPHeader">
            <div class="contenedor">
                <nav class="menu">
                    <a itemprop="url" href="#about-us" id="btn-acerca-de">Acerca de</a>
                    <a itemprop="url" href="#trabajos" id="btn-trabajos">Proyectos</a>
                    <a itemprop="url" href="#contacto" id="btn-contacto">Contacto</a>
                </nav>
                <div itemscope itemtype="https://schema.org/Person" class="contenedor-texto">
                    <div class="texto">
                        <h1 itemprop="name" class="nombre">Jesús</h1>
                        <h2 itemprop="jobTitle" class="profesion">Desarrollador</h2>
                    </div>
                </div>
            </div>
        </header>

        <!-- content -->
        <main>
            {% block content %}{% endblock %}
        </main>

        {% block footer %}

            {% block contacto %}{% endblock %}

        {% endblock %}
        <script src="{% static 'core/js/efectos.js' %}"
                integrity="sha512-9GdKmuOrtKz7ckc46lSnzz8SVUCYJEL29vCbv1Kb63Fo5yVDLEzsmoiODINkWU9rxQTgSZiawwU0oE8+mknLLw=="></script>
        <script src="{% static 'core/js/formulario.js' %}"
                integrity="sha512-uiBX+5GOQELMNOY3xYelryeQwSn2G3eKqRFZEzisp+CZUp8r82jFPNgcdrBG/ZI/Wt4Lx7ojx2U4jAWXk5jqIw=="></script>
    </body>
</html>