-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsponsors.html
77 lines (77 loc) · 4 KB
/
sponsors.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
<!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="#" class="b green link ml4 bb" 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">
<h1 class="f1">Sponsors</h1>
<div class="flex items-center justify-center ma4">
<a href="https://htmlburger.com" target="_blank" class="ml2">
<img src="./img/htmlburger.png" alt="HTML Burger" class="h4 v-btm grow">
</a>
</div>
<div class="flex items-center justify-center ma3">
<a href="https://frontendmasters.com" target="_blank" class="ml4">
<img src="./img/frontend-masters.png" alt="FrontEnd Masters" class="h3 v-btm grow">
</a>
<a href="https://www.jetbrains.com/" target="_blank" class="ml4">
<img src="./img/jetbrains.png" alt="Jet Brains" class="h4 v-btm grow">
</a>
<a href="https://leanpub.com/vuejs2" target="_blank" class="ml4">
<img src="./img/tmvuejs2.png" alt="The Majesty of Vue.js 2" class="h3 v-btm grow">
</a>
</div>
<div class="flex items-center justify-center ma4">
<a href="https://vuejsfeed.com/" target="_blank" class="ml4">
<img src="./img/vuejsfeed.png" alt="Vue.js Feed" class="h3 v-btm grow">
</a>
<a href="https://platzi.com" target="_blank" class="ml4">
<img src="./img/platzi.png" alt="Platzi" class="h3 v-btm grow">
</a>
</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>