|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="es-MX" class="dark"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta |
| 6 | + name="viewport" |
| 7 | + content="width=device-width, initial-scale=1, shrink-to-fit=no" |
| 8 | + /> |
| 9 | + |
| 10 | + <link rel="stylesheet" href="{{ site.assets }}/css/solarized.css" /> |
| 11 | + |
| 12 | + <link |
| 13 | + rel="stylesheet" |
| 14 | + href="{{ site.assets }}/css/halivert-layout.css" |
| 15 | + /> |
| 16 | + |
| 17 | + <link rel="stylesheet" href="{{ site.assets }}/css/halivert.css" /> |
| 18 | + <link rel="stylesheet" href="{{ site.assets }}/css/halivert-dark.css" /> |
| 19 | + |
| 20 | + <link rel="stylesheet" href="{{ site.assets }}/css/fa.min.css"/> |
| 21 | + |
| 22 | + {%- |
| 23 | + assign gistTheme = "https://cdn.rawgit.com" |
| 24 | + | append: "/lonekorean/gist-syntax-themes/b737b139/stylesheets" |
| 25 | + | append: "/solarized-dark.css" |
| 26 | + -%} |
| 27 | + |
| 28 | + <link rel="stylesheet" href="{{ gistTheme }}" type="text/css"/> |
| 29 | + |
| 30 | + <meta name="telegram:channel" content="@halivertsblog" /> |
| 31 | + |
| 32 | + <meta name="monetization" content="$ilp.uphold.com/yJJL4YrpRMQi"> |
| 33 | + |
| 34 | + <script src="https://unpkg.com/turbolinks" defer></script> |
| 35 | + <script src="{{ site.assets }}/js/main.js"></script> |
| 36 | + <script src="{{ site.assets }}/js/nav.js" defer></script> |
| 37 | + |
| 38 | + <title>{{ site.title }}</title> |
| 39 | + |
| 40 | + {% seo title=false %} |
| 41 | + {% if site.has_math %} |
| 42 | + {% include katex.html %} |
| 43 | + {% elsif site.has_instant_view %} |
| 44 | + <meta property="has_instant_view" /> |
| 45 | + {% endif %} |
| 46 | + </head> |
| 47 | + |
| 48 | + <body class="has-background-light"> |
| 49 | + <nav class="repo fixed-top-bar"> |
| 50 | + <button |
| 51 | + id="theme-switcher-corner" |
| 52 | + class="button theme-switcher is-invisible" |
| 53 | + onclick="changeTheme('theme-switcher-corner')" |
| 54 | + data-turbolinks-permanent |
| 55 | + style="border-radius: 0" |
| 56 | + > |
| 57 | + <span class="icon"> |
| 58 | + <i class="fas" aria-hidden="true"></i> |
| 59 | + </span> |
| 60 | + </button> |
| 61 | + |
| 62 | + <a |
| 63 | + href="{{ site.github.repository_url }}" |
| 64 | + class="button github" |
| 65 | + style="border-radius: 0" |
| 66 | + > |
| 67 | + <span>Ver en github</span> |
| 68 | + <span class="icon"> |
| 69 | + <i class="fab fa-github" aria-hidden="true"></i> |
| 70 | + </span> |
| 71 | + </a> |
| 72 | + </nav> |
| 73 | + |
| 74 | + <main class="is-size-5"> |
| 75 | + <section class="hero is-primary repo"> |
| 76 | + <div class="hero-body"> |
| 77 | + <div class="container"> |
| 78 | + <h1 class="title is-2">{{ site.title }}</h1> |
| 79 | + <h2 class="subtitle">{{ site.description }}</h2> |
| 80 | + </div> |
| 81 | + </div> |
| 82 | + </section> |
| 83 | + |
| 84 | + <section class="section"> |
| 85 | + <div class="container content"> |
| 86 | + {{ content }} |
| 87 | + </div> |
| 88 | + </section> |
| 89 | + </main> |
| 90 | + </body> |
| 91 | +</html> |
0 commit comments