-
Notifications
You must be signed in to change notification settings - Fork 104
/
index.html
executable file
·87 lines (74 loc) · 3.47 KB
/
index.html
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
82
83
84
85
86
87
---
---
{%- assign langSuffix = '-' | append: site.active_lang -%}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Turning off number detection in iOS (see: https://css-tricks.com/the-current-state-of-telephone-links/#article-header-id-8) -->
<meta name="format-detection" content="telephone=no">
<title>{{ site.title }}</title>
<link rel="canonical" href="{{ site.url }}">
<!-- SEO related meta tags -->
<meta name="keywords" content="{{ site.keywords }}">
<meta name="description" content="{{ site.description }}">
<meta property="og:title" content="{{ site.title }}">
<meta property="og:locale" content="es_MX">
<meta property="og:description" content="{{ site.description }}">
<meta property="og:url" content="{{ site.url }}">
<meta property="og:image" content="{{ site.url }}/assets/img/home-bg.png">
<meta property="og:site_name" content="{{ site.title }}">
<meta name="twitter:card" content="{{ site.description }}">
<meta name="twitter:title" content="{{ site.title }}">
<meta name="twitter:url" content="{{ site.url }}">
<meta name="twitter:description" content="{{ site.description }}">
<meta name="twitter:image:src" content="{{ site.url }}/assets/img/home-bg.png">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="{{ "main.css" | prepend: site.assets.css }}?{{site.time | date: '%s%N'}}"">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Favicon -->
{% if site.favicon %}<link rel="shortcut icon" href="{{ site.favicon }}" type="image/x-icon">{% endif %}
{% if site.touch_icon %}<link rel="apple-touch-icon" href="{{ site.touch_icon }}">{% endif %}
<!-- Google Analytics -->
{% if site.google_analytics and jekyll.environment == 'production' %}
{% include analytics.html %}
{% endif %}
</head>
<body>
<header class="smx-header clearfix">
<div class="logo"><a href="#"><img src="{{ "logotype-header.svg" | prepend: site.assets.svg }}"></a></div>
<a href="#" class="resToggle">☰</a>
<nav class="smx-navigation">
<ul>
<li><a href="#section-necesito-ayuda">Necesito ayuda</a></li>
<li class="active"><a href="#section-quiero_ayudar">Quiero ayudar</a></li>
<div class="nav-right">
<li><a href="#section-faq">Faq</a></li>
<!--
<li><a href="#">Agradecimientos</a></li>
<li><a href="#">Contacto</a></li>
-->
</div>
</ul>
</nav>
</header>
<main class="smx-main-content">
{% for page in site.posts reversed %}
{% capture id %}{{ page.id | remove: '/' | remove: langSuffix | downcase }}{% endcapture %}
<section class="smx-{{ id }}" id="section-{{id}}">
<div class="container">
{{ page.content }}
</div>
<div class="section__separator"></div>
</section>
{% endfor %}
</main>
{% include footer.html %}
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha256-k2WSCIexGzOj3Euiig+TlR8gA0EmPjuc79OEeY5L45g=" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="{{ "app.js" | prepend: site.assets.js }}?{{site.time | date: '%s%N'}}""
>
</script>
</body>
</html>