-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
87 lines (77 loc) · 2.88 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
<!DOCTYPE html>
<html>
<head>
<!-- Title here -->
<title>Vienna Scala User Group</title>
<!-- Description, Keywords and Author -->
<meta name="description" content="Your description">
<meta name="keywords" content="Your,Keywords">
<meta name="author" content="ResponsiveWebInc">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Open sans Condensed -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700' rel='stylesheet' type='text/css'>
<!-- Open sans -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
<!-- Styles -->
<!-- Bootstrap CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Countdown CSS -->
<link rel="stylesheet" type="text/css" href="css/jquery.countdown.css">
<!-- Font awesome CSS -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- Favicon -->
<link rel="shortcut icon" href="#">
</head>
<body>
<!-- Header Start -->
<header>
<!-- Container -->
<div class="container">
<!-- Logo -->
<div class="logo">
<a href="http://www.meetup.com/scala-vienna"><img width="200px" src="https://raw.github.com/scala-vienna/scala-vienna-logos/master/vienna-workshop/vienna-scala-user-group-logo_300px.png"/></a>
</div>
</div>
<!-- Countdown Block -->
<div class="countdown-block">
<!-- Container -->
<div class="container">
<div class="build-info-wrapper">
<h3 class="build-info">[scala-vienna-web] $ dist<br/>
[info] Updating {scala-vienna-web} ...<br/>
</h3>
</div>
<!-- Countdown -->
<div class="countdown">
<div id="countdown"></div>
</div>
</div>
</div>
</header>
<!-- Header end -->
<!-- Javascript files -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap JS -->
<script src="js/bootstrap.min.js"></script>
<!-- Countdown JS -->
<script type="text/javascript" src="js/jquery.countdown.min.js"></script>
<!-- Respond JS for IE8 -->
<script src="js/respond.min.js"></script>
<!-- HTML5 Support for IE -->
<script src="js/html5shiv.js"></script>
<!-- Custom JS -->
<script src="js/custom.js"></script>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45930237-1', 'scala-vienna.org');
ga('send', 'pageview');
</script>
</body>
</html>