-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
89 lines (78 loc) · 3.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>cenwidev.org - Central Wisconsin Developers Group</title>
<!-- Bootstrap v4 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<!-- Fontawesome -->
<script src="https://use.fontawesome.com/695d4dd076.js"></script>
<link rel="stylesheet" href="./css/site.css">
<!-- Google Analytics -->
<script type="text/javascript">
(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','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-39484225-7', 'auto'); ga('send', 'pageview');
</script>
</head>
<body>
<!--<div class="event-banner-container d-sm-flex">
<div class="event-banner-tag text-center text-nowrap">
<h1>CWITC 2018</h1>
</div>
<div class="event-banner-content d-md-flex">
<div class="event-banner-details text-center text-md-left">
<div>Central Wisconsin IT Conference</div>
<div><small>Join us October 6th, 2018</small></div>
</div>
<div class="event-banner-more-info text-center">
<a href="https://www.cwitc.org/" class="btn btn-primary">
More Info
<i class="fa fa-chevron-right"></i>
</a>
</div>
</div>
</div> -->
<div class="jumbotron">
<div class="container">
<img src="./img/cenwidev.png" />
<h1>Central Wisconsin Developers Group</h1>
<p class="lead">Find out more through the social media links below, or join <a href="http://eepurl.com/gbkRtr">the mailing list</a> if you'd like to receive emails for local events.</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md">
<a class="card social-link meetup" href="https://meetup.com/Central-WI-Developers-Group">
<div class="card-block text-center">
<i class="fa fa-meetup fa-5x"></i>
<h1>Meetup</h1>
<hr>
<p class="card-text">Upcoming Events</p>
</div>
</a>
</div>
<div class="col-md">
<a class="card social-link github" href="https://github.com/cenwidev">
<div class="card-block text-center">
<i class="fa fa-github fa-5x"></i>
<h1>Github</h1>
<hr>
<p class="card-text">Code and Projects</p>
</div>
</a>
</div>
<div class="col-md">
<a class="card social-link slack" href="https://discord.gg/xbHwSErgGU">
<div class="card-block text-center">
<i class="fa fa-comments fa-5x"></i>
<h1>Discord</h1>
<hr>
<p class="card-text">Join the Community!</p>
</div>
</a>
</div>
</div>
<footer class="text-center">© CenWiDev 2023 - Powered by <a href="https://github.com/CenWIDev/CenWIDev.github.io">GitHub</a></footer>
</div>
</body>
</html>