-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
149 lines (148 loc) · 5.01 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="it">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-7Q0D1XH7S5"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-7Q0D1XH7S5");
</script>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#f3df49" />
<title>Milano JS - Il DOM de Milan</title>
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" href="bower_components/skeleton/css/skeleton.css" />
<link rel="stylesheet" href="styles/milanojs.css" />
</head>
<body>
<section class="cover">
<div class="container">
<div class="row">
<div id="logo-col" class="four columns">
<a class="home" href="/">
<img class="logo" src="img/mijs.svg" alt="Milano JS" />
</a>
<h1>Milano JS <span>il DOM de Milan</span></h1>
<nav id="main-nav">
<!-- a href="/about">chi siamo</a -->
</nav>
<p class="em">info@milanojs.com</p>
</div>
<div class="eight columns">
<p class="cover-credits">Foto: Alessandro Bellini</p>
</div>
</div>
</div>
</section>
<div class="container main-container">
<section class="newsletter">
<!-- Begin MailChimp Signup Form -->
<div id="mc_embed_signup">
<form
action="//milanojs.us10.list-manage.com/subscribe/post?u=812c6e916903b29db2479916d&id=2cf03005c2"
method="post"
id="mc-embedded-subscribe-form"
name="mc-embedded-subscribe-form"
class="validate"
target="_blank"
novalidate
>
<div id="mc_embed_signup_scroll" style="overflow: hidden">
<label for="mce-EMAIL">Iscriviti alla newsletter</label>
<input
type="email"
value=""
name="EMAIL"
class="required email"
id="mce-EMAIL"
/>
<input
type="submit"
value="invia"
name="subscribe"
id="mc-embedded-subscribe"
class="button button-primary"
/>
<div id="mce-responses" class="clear">
<div
class="response"
id="mce-error-response"
style="display: none"
></div>
<div
class="response"
id="mce-success-response"
style="display: none"
></div>
</div>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px">
<input
type="text"
name="b_812c6e916903b29db2479916d_2cf03005c2"
tabindex="-1"
value=""
/>
</div>
</div>
</form>
</div>
<!--End mc_embed_signup-->
</section>
<div class="row main-content">
<div class="eight columns txt">
<h2>Unisciti a noi online!</h2>
<p>
Cari amici di Milano JS,<br />
per il momento ci siamo presi una pausa dai meetup fisici.
</p>
<p>
Ci trovi comnuque sempre online sul server Discord di
<a href="https://italia-js.org">Italia JS</a>
</p>
<iframe
src="https://discord.com/widget?id=782921551225028618&theme=dark"
width="400"
height="250"
allowtransparency="true"
frameborder="0"
sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"
></iframe>
</div>
<div class="four columns">
<div class="sponsor">
<h4>Sponsored by:</h4>
<a href="https://www.jetbrains.com/"
><img src="img/jetbrains.png" alt="Jetbrains"
/></a>
</div>
</div>
</div>
<footer>
<div class="eight columns txt">
<p>© 2020 Milano JS - La community JavaScript di Milano.</p>
</div>
<div class="four columns txt">
<div class="social-icons">
<a href="https://www.facebook.com/milanojavascript">Facebook</a> |
<a href="https://twitter.com/milano_js">Twitter</a> |
<a href="https://github.com/milano-js/">Github</a>
</div>
</div>
</footer>
</div>
</body>
</html>