-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
70 lines (70 loc) · 3.96 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
<!DOCTYPE html>
<html lang="es">
<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>Vuenos Aires meetup</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]">
<link rel="stylesheet" href="./css/main.css">
<link rel="icon" href="/img/vue.png" type="image/png">
</head>
<body class="flex flex-column navy sans-serif vh-100 w-100" style="min-width: 960px;">
<header class="b--black-10 bb bg-white pa3 w-100">
<div class="center flex items-center justify-between mw8">
<h1 class="f3 ma0">
<a href="/" class="dib link navy">Vuenos Aires</a>
</h1>
<div class="flex">
<a href="http://meetupjs.com.ar/calendario.html" target="_blank" class="b green link" title="Ver todos los eventos de la comunidad 😎">Eventos</a>
<a href="https://github.com/vuenos-aires/charlas" target="_blank" class="b green link ml4" title="¿Querés dar una charla? 😉">Charlas</a>
<a href="sponsors.html" class="b green link ml4" title="Los que ponen la tarasca 🙏">Sponsors</a>
<a href="https://github.com/vuenos-aires/charlas/blob/master/CONDUCT.md" target="_blank" class="b green link ml4" title="TL;DR: No seas un imbécil">Código de Conducta</a>
</div>
</div>
</header>
<main class="bg-near-white flex flex-auto flex-column items-center justify-center w-100">
<div class="center mw7 tc">
<img src="./img/vuenosaires_animated.svg" alt="Vuenos Aires Meetup" class="h5 logo-animation v-btm" title="¡Gracias @camilunghi por el logo! 💪🏼">
<p class="f3 fw3 lh-title mt5 mb3">
<strong class="b">Vuenos Aires</strong>
es un meetup donde nos enfocamos en aprender, enseñar y difundir todo lo que tenga que ver con el ecosistema de
<a href="https://vuejs.org" target="_blank" class="b green link">Vue.js</a>.
</p>
<p class="f3 fw3 lh-title ma0">
Publicamos eventos en
<a href="https://www.meetup.com/vuenos-aires" target="_blank" class="b f3 green link">Meetup</a>
y usamos
<a href="http://slack.meetupjs.com.ar" target="_blank" class="b f3 green link">Slack</a>
para comunicarnos. Las noticias las posteamos en
<a href="https://twitter.com/vuenos_aires" target="_blank" class="b f3 green link">Twitter</a>
y subimos código a
<a href="https://github.com/vuenos-aires" target="_blank" class="b f3 green link">Github</a>.
</p>
</div>
</main>
<footer class="b--black-10 bg-white bt pa3 tc w-100">
<div class="flex items-center justify-center">
<p class="ma0">Con el apoyo de</p>
<a href="https://htmlburger.com" target="_blank" class="ml4">
<img src="./img/htmlburger.png" alt="HTML Burger" class="h2 v-btm">
</a>
<a href="https://frontendmasters.com" target="_blank" class="ml4">
<img src="./img/frontend-masters.png" alt="FrontEnd Masters" class="h2 v-btm">
</a>
<a href="https://leanpub.com/vuejs2" target="_blank" class="ml4">
<img src="./img/tmvuejs2.png" alt="The Majesty of Vue.js 2" class="h2 v-btm">
</a>
<a href="https://www.jetbrains.com/" target="_blank" class="ml4">
<img src="./img/jetbrains.png" alt="Jet Brains" class="h2 v-btm">
</a>
<a href="https://vuejsfeed.com/" target="_blank" class="ml4">
<img src="./img/vuejsfeed.png" alt="Vue.js Feed" class="h2 v-btm">
</a>
<a href="https://platzi.com" target="_blank" class="ml4">
<img src="./img/platzi.png" alt="Platzi" class="h2 v-btm">
</a>
</div>
</footer>
</body>
</html>