forked from mike-u/DesignHubWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
111 lines (93 loc) · 4.81 KB
/
base.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
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Pitt Design Hub</title>
<meta name="description" content="The University of Pittsburgh's Design Hub, a student ideation platform for generating top-notch ideas and creating cross-disciplinary interactions.">
<meta name="author" content="DESIGNhub">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link type="text/css" rel="stylesheet" href="assets/css/normalize.css">
<link type="text/css" rel="stylesheet" href="assets/css/skeleton.css">
<link type="text/css" rel="stylesheet" href="assets/css/custom.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="shortcut icon" href="assets/img/DesignHubIcon3.ico">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Scripts -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/custom.js"></script>
{% block head %}{% endblock %}
</head>
<body>
{% block navbar %}
<!-- Navigation Bar -->
<div class="container">
<div class="navbar-spacer"></div>
<nav class="navbar">
<div class="container">
<ul class="navbar-list">
<li class="navbar-icon">
<!--<a class="navbar-link" href="http://www.pittdesignhub.com">Home</a>-->
<a class="navbar-link" href="http://www.pittdesignhub.com"><img src="assets/img/DesignHub40.png"></a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="http://www.pittdesignhub.com/#about">About</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="http://www.pittdesignhub.com/#projects">Projects</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="http://www.pittdesignhub.com/#opportunities">Opportunities</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="http://www.pittdesignhub.com/calendar">Calendar</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="http://www.pittdesignhub.com/#resources">Resources</a>
</li>
</ul>
</div>
</nav>
</div>
{% endblock %}
{% block header %}
{% endblock %}
{% block content %}
{% endblock %}
{% block footer %}
<div class="docs-section negative">
<div class="container">
<div class="row">
<div class="four columns" >
<img class="img-responsive" src="assets/img/InvertedDesignHub.png">
<!-- TODO fix picture height and width -->
</div>
<div class="eight columns" >
<!-- TODO make the text white, even though it is a link, I think the white contrasts better-->
<p><i class="fa fa-envelope"></i> <a href="mailto:hi@pittdesignhub.com">hi@designdesignhub.com</a> <br>
<i class="fa fa-github"></i> <a href="https://github.com/mciantyre/designhubweb">Steal the code!</a> <br>
<i class="fa fa-camera-retro"></i> <a href="https://www.facebook.com/abbywangphotography">Photo Credit: Abby Wang</a> </p>
<!-- Hacked together by Ian McIntyre, Zachary Barnes, Stephanie Lee, Madhur Malhotra, and Michael Urich. <script type="text/javascript">document.write(new Date().getFullYear());</script></h6> -->
</div>
</div>
</div>
</div>
{% endblock %}
</body>
<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-60501218-1', 'auto');
ga('send', 'pageview');
</script>
</html>