-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
91 lines (88 loc) · 3.91 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
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Emergyanos Felices</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.4.2/css/bulma.min.css">
<link rel="stylesheet" href="resources/assets/css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<script type="text/javascript" src="resources/assets/js/challenges.js"></script>
</head>
<body>
<div id="app">
<section class="hero is-emergya is-fullheight" id="hero">
<div class="hero-body">
<div class="container has-text-centered">
<div class="columns">
<div class="column">
<div class="box animated fadeIn">
<div class="columns is-gapless is-multiline">
<div class="column task is-11 has-text-left">
<h1 class="title"></h1>
</div>
<div class="column">
<figure class="image animated fadeIn">
<svg xmlns="http://www.w3.org/2000/svg" width="136" height="136" viewBox="0 0 136 136">
<g class="logo" fill="none" fill-rule="evenodd">
<path stroke="#FFF" stroke-width="4" d="M133.64 67.913c0 36.371-29.455 65.856-65.791 65.856S2.056 104.284 2.056 67.913c0-36.372 29.457-65.856 65.793-65.856 36.336 0 65.792 29.484 65.792 65.856z"
/>
<path fill="#FFF" d="M97.346 47.678H77.091v15.055h20.022v6.832H77.091v18.213h20.12v6.648H70.603V41.4h26.743zM38.351 88.148h20.255V69.77H38.584v-6.648h20.022V48.047h-20.12V41.4h26.609v53.026H38.35z"
/>
</g>
</svg>
</figure>
</div>
<div class="column is-three-quarters content">
<h2 id="challenge" class="title animated fadeIn"></h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</body>
<script src="resources/assets/js/typed.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="resources/assets/js/particlesConfig.js"></script>
<script src="resources/assets/js/challengeBuilder.js"></script>
<!-- Hotjar Tracking Code for La Miriam at https://pepegarciag.github.io/Emergyanos/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:552380,hjsv:5};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<!-- Google Analytics for beagonpost -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-101941712-1', 'auto');
ga('send', 'pageview');
</script>
<script>
document.addEventListener("DOMContentLoaded", function() {
// Init particles.js background.
particlesJS("hero", particlesConfig);
// Options for typed.js
var options = {
strings: ["Tarea de hoy <span id='date'>" + moment().format("DD-MM-YYYY") + "</span>"],
typeSpeed: 40
}
var typed = new Typed(".task .title", options);
// Init the builder
challengeBuilder.init();
});
</script>
</html>