-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (112 loc) · 6.09 KB
/
index.html
File metadata and controls
138 lines (112 loc) · 6.09 KB
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
<!DOCTYPE html>
<html>
<head>
<!-- Metadata for Search Engines like Google -->
<meta charset="utf-8">
<title>Women Techmakers Hamburg</title>
<meta name="description" content="This group is the Hamburg chapter of the global Women Techmakers initiative. We are part of the Google Developer Group Hamburg.">
<!-- Responsive and Mobile Friendly Meta Tag -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Facebook Preview Thumbnail Image -->
<meta property="og:image" content="http://moinworld.github.io/img/wtm-fb-thumb.png">
<!-- Favicons for the Browsers and apple Devices -->
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="apple-touch-icon" href="img/apple-favicon.png">
<!-- Google Font -->
<link href='https://fonts.googleapis.com/css?family=Roboto:100,300,500' rel='stylesheet' type='text/css'>
<!-- CSS Stylesheets -->
<link rel="stylesheet" href="css/normalize.css" media="all">
<link rel="stylesheet" href="css/col.css" media="all">
<link rel="stylesheet" href="css/style.css" media="all">
</head>
<body>
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-KN53WC" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-KN53WC');</script>
<!-- End Google Tag Manager -->
<header class="header">
<!-- Overlay Wrapper Starts -->
<div id="cookie">
<div id="cookie__info" class="cookie-info">
<h3 class="h3">Cookies</h3>
<p>
Durch die Nutzung von moinworld.de stimmen Sie unserer Verwendung von Cookies zu. Nähere Informationen über die von uns verwendeten Cookies und die Möglichkeiten, diese zu deaktivieren, finden Sie <a href="imprint.html#googleAnalytics" class="cookie-info__link">hier</a>.
</p>
<button id="cookie__btn" class="btn--action cookie-info__btn" type="button">Einverstanden</button>
</div>
</div>
<!-- Overlay Wrapper Ends -->
<div class="wrapper header__wrapper">
<!-- Logo -->
<h1 class="logo"><a href="/">Women Techmakers Hamburg</a></h1>
<!-- Mobile Navigation Open Button -->
<a href="#nav" class="menu--open visible-mobile" title="Open Navigation">Menu</a>
<!-- Navigation -->
<nav id="nav" class="nav transition-all">
<!-- Site Navigation -->
<ul class="nav__site">
<li><a class="active" href="/">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="mentors.html">Mentors</a></li>
</ul>
<!-- Social Navigation -->
<ul class="nav__social">
<li><a href="https://twitter.com/wtm_hamburg/" target="_blank"><i class="fa fa-twitter fa-2x" aria-hidden="true"></i></a></li>
<li><a href="https://www.facebook.com/womentechmakershamburg/" target="_blank"><i class="fa fa-facebook fa-2x" aria-hidden="true"></i></a></li>
<li><a href="https://github.com/WTMHH/" target="_blank"><i class="fa fa-github fa-2x" aria-hidden="true"></i></a></li>
</ul>
</nav>
<!-- Mobile Navigation Close Button -->
<a href="#" class="menu--close visible-mobile transition-all" title="Close Navigation">×</a>
</div>
</header>
<!-- Home Container Starts -->
<main class="main--home">
<section class="sec--home">
<!-- Headline -->
<div class="section">
<div class="section__banner">
<img class="sec--home__logo" src="img/wtm-logo-icon.svg" alt="Women Techmakers Logo" width="160" height="136">
<h2 class="h2">Women Techmakers Hamburg</h2>
<!-- JS Counter Starts -->
<div class="countdown">
<p>
<strong class="countdown__text"></strong><br>
<span class="countdown__name"></span><br>
<span class="countdown__time"></span>
</p>
</div>
<!-- JS Counter Ends -->
<!-- Call to Action Starts-->
<a class="btn--action signup-btn" href="https://www.meetup.com/de-DE/womentechmakershamburg/">Sign Up</a>
<!-- Call to Action Ends-->
</div>
</div>
</section>
</main>
<!-- Home Container Ends -->
<!-- Sticky scroll link -->
<button title="Back to top" id="scroll" class="scroll transition-all">
<img class="scroll__icon" src="img/arrow_drop_up.svg" />
</button>
<footer class="footer">
<div class="wrapper">
<p>
© 2016 Women Techmakers Hamburg.<br>
<a href="imprint.html">Legal Disclosure</a>
</p>
</div>
</footer>
<!-- Font Awesome -->
<script src="https://use.fontawesome.com/5ac618c67d.js"></script>
<!-- Include our scroll-to-top - JS file -->
<script src="js/scroll-to-top.js"></script>
<!-- Include our events counter via Meetup API - JS file -->
<script src="js/event-countdown.js"></script>
<!-- Inlcude our cookie info/notification - JS file -->
<script src="js/cookie.js"></script>
</body>
</html>