forked from ScottyLabs/tartanhacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
128 lines (125 loc) · 5.36 KB
/
faq.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
---
title: TartanHacks 2019
layout: null
---
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="mobile-web-app-capable" content="yes"/>
<title>TartanHacks 2019</title>
<link rel="icon" href="rsc/img/favicon.ico">
<link type="text/css" rel="stylesheet" href="fonts/fonts.css" media="screen"/>
<link type="text/css" rel="stylesheet" href="css/style.css" media="screen"/>
<link type="text/css" rel="stylesheet" href="css/faq.css" media="screen"/>
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link rel="canonical" href="https://tartanhacks.com/" />
<meta name="description" content="Carnegie Mellon University's largest hackathon, hosted by ScottyLabs. Come hack, build, make or create your own project.">
<meta name="keywords" content="CMU,hackathon,hack,ScottyLabs,technology,Carnegie Mellon">
<!-- Facebook Open Graph - Tells Facebook what to show when our webpage is shared. -->
<meta property="og:url" content="https://tartanhacks.com/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="TartanHacks 2019" />
<meta property="og:description" content="Carnegie Mellon University's largest hackathon, hosted by ScottyLabs. Come hack, build, make or create your own project." />
<meta property="og:image" content="https://tartanhacks.com/rsc/img/TartanhacksEventSquare.png" />
<!-- Schema.org JSON-LD tags, describes the organization to web crawlers -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Event",
"description": "Carnegie Mellon University's largest hackathon, hosted by ScottyLabs. Come hack, build, make or create your own project.",
"location": {
"@type": "PostalAddress",
"addressCountry": "USA",
"addressLocality": "Pittsburgh",
"addressRegion": "PA",
"postalCode": "15213",
"streetAddress": "5032 Forbes Ave.",
"name": "Cohon University Center"
},
"image": "https://tartanhacks.com/rsc/img/TartanhacksEventSquare.png",
"name": "TartanHacks",
"alternateName": "Tartan Hacks",
"startDate": "2019-02-08T17:00:00-05:00",
"endDate": "2019-02-09T20:00:00-05:00",
"organizer": {
"@type": "Organization",
"sameAs": "https://scottylabs.org"
},
"url": "https://tartanhacks.com"
}
</script>
</head>
<body class="light-teal clearfix">
<div class="navy-blue-text">
<div id="menu">
<div class="logo">
<h2>TartanHacks</h2>
<span>February 8-9, 2019</span>
</div>
<span class="options">
<a href="/"> Home </a>
</span>
<span class="options underline">
FAQ
</span>
<span class="options">
<a href="schedule.html"> schedule </a>
</span>
<!--
<span class="options">
<a href="http://registration.tartanhacks.com"> register</a>
</span>
-->
<span id="nav">
<div class="large">
<i class="fa fa-bars open-menu" aria-hidden="true"></i>
</div>
</span>
</div>
</div>
<div class="navy-blue-text" id="sidebar">
<div id="menu">
<span class="options">
<a href="/"> Home </a>
</span>
<space><br/></space>
<span class="options underline">
FAQ
</span>
<space><br/></space>
<span class="options">
<a href="schedule.html"> schedule </a>
</span>
<space><br/></space>
<!--
<span class="options">
<a href="http://registration.tartanhacks.com"> register </a>
</span>
<space><br/></space>
-->
<span class="options close-menu">
close menu
</span>
</div>
</div>
<div id="faq" class="navy-blue-text clearfix">
<div id="faq-text">
{% for faq in site.data.faq %}
<h2>{{ faq.question}}</h2>
<p>{{ faq.answer }}</p>
{% endfor %}
</div>
<div class="relative" id="copyright">
Copyright Scottylabs 2019.
</div>
</div>
<script src="https://use.fontawesome.com/9c8a25da89.js"></script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="js/sidebar.js"></script>
</body>
</html>