-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (67 loc) · 3.14 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
<!DOCTYPE HTML>
<html>
<head>
<title>Show-Me Coders</title>
<meta charset="utf-8">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--INSERT CSS-->
<link rel="stylesheet" type="text/css" media="screen and (max-width:950px)" href="./src/styles/indexSmall.css">
<link rel="stylesheet" type="text/css" media="screen and (min-width:951px)" href="./src/styles/indexLarge.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300i,400,500" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/2.0.2/octicons.min.css">
<!-- <link rel="stylesheet" href="github-activity-0.1.5.min.css"> -->
<!--INSERT SCRIPTS-->
<script defer type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script defer type="text/javascript" src="./src/scripts/index.js"></script>
<script defer type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.7.2/mustache.min.js"></script>
<!-- <script defer type="text/javascript" src="github-activity-0.1.5.min.js"></script> -->
<script defer type="text/javascript" src="./src/scripts/smc.js"></script>
<script defer type="text/javascript" src="./src/scripts/index.js"></script>
</head>
<body>
<div id="header">
<div class="props"><p>A showcase of skills learned in conjunction <br> with <a href="http://www.udacity.com" title="Udacity" target="_blank"><img src="./assets/udacity.png?raw=true" height="15px" /></a> and <a href="http://grow.google" title="GrowwithGoogle" target="_blank"> <img src="./assets/gwg.png?raw=true" height="15px" /></a></div>
<div class="banner">
<a href="https://showmecoders.github.io/showmecoders/" title="Show Me Coders"><img src="https://github.com/ShowMeCoders/showmecoders/blob/development/assets/showmecoders-logo1-white.png?raw=true" alt="Show-Me Coders"></a>
</div>
</div>
<!-- Full Size MENU -->
<div class="fullMenu">
<a href="#ourMission" class="fullMenuLinks">Our Mission</a>
<a href="#ourTeam" class="fullMenuLinks">Our Team</a>
<a href="#ourProject" class="fullMenuLinks">Our Project</a>
</div>
<!-- Welcome Message -->
<div id="ourMission">
<div class="missionMessage">
<h3 class="welcomeHeader">Welcome</h3>
<p> <em>Welcome to the Show-Me Coders project page!</em>
<br> <br>
This project was created as part of a three month long program
of instruction to demonstrate our grasp of the lessons learned during
the coursework and to gain the valuable skill of working as a team.
</p>
</div>
</div>
<!-- DEV Boxes -->
<div id="ourTeam">
<div class="sectionBanner">Contributing Developers:
<br>
[ <em> select a Developer below to see more about them and their work </em> ]
</div>
<div class="devRows">
<!-- LEAVE DIV FOR DEV BOXES TO POPULATE -->
</div>
<!-- GH Feed, Generated by JS -->
<div id="ourProject">
<div class="sectionBanner">Project Activity:</div>
</div>
<div id="feed"></div>
</div>
<!-- Footer -->
<div class="footer">
<strong>Copyright 2018 |</strong> Show-Me Coders
</div>
</body>
</html>