-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathevents.html
More file actions
127 lines (102 loc) · 5.95 KB
/
events.html
File metadata and controls
127 lines (102 loc) · 5.95 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
<!DOCTYPE html>
<html>
<head>
<!-- Metadata for Search Engines like Google -->
<meta charset="utf-8">
<title>Women Techmakers Hamburg: Events</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">
<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 href="/">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a class="active" 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>
<!-- Events Section Starts -->
<main>
<section class="sec--events sec--content">
<div class="wrapper header__wrapper">
<!-- Headline -->
<div class="section group">
<h2 class="h2">Events</h2>
</div>
<!-- Column Group: 2 columns -->
<div class="section group">
<!-- Column #1 -->
<article class="col span_1_of_2">
<h3 class="h3">Meetup Network</h3>
<!-- Unordered List of Links -->
<ul>
<li><a href="http://www.meetup.com/womentechmakershamburg/events/" target="_blank">Calendar</a></li>
<li><a href="http://www.meetup.com/womentechmakershamburg/about/comments/?op=all" target="_blank">Group Reviews</a></li>
<li><a href="http://www.meetup.com/womentechmakershamburg/sponsors/" target="_blank">Sponsors</a></li>
</ul>
</article>
<!-- Column #2 -->
<article class="col span_1_of_2">
<h3 class="h3">Hello Everybody</h3>
<p>This group is the Hamburg chapter of the global Women Techmakers initiative. We are part of the Google Developer Group Hamburg. During the next months we will cover the different fields of Hamburg's startup scene, i.e. backend, front-end and SDK, by a set of intro lectures and beginners workshops, all in the Hamburg Google offices. The purpose is to allow those who are less acquainted to learn more, and to those who are already in, to expand their knowledge. It is also a chance to meet like-minded people and network.</p>
</article>
</div>
</div>
</section>
</main>
<!-- Events Section 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 header__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>
</body>
</html>