This repository has been archived by the owner on Jan 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (54 loc) · 2.8 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
<!DOCTYPE html>
<html lang="en" ng-app="notif">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>HackGT Notifications Page</title>
<meta name="author" content="HackGT">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css?family=Advent+Pro:400,600|Lato" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel='stylesheet' href='build/app.css' />
<link rel='stylesheet' href='build/style.css' />
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="./assets/favicon.png">
<!-- JavaScript/JQuery
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</head>
<body ng-controller="AppController">
<div class="container-fluid">
<div class="title col-md-12">
<img src="./assets/logo.png" id="logo">
<h1>Hack<strong>GT</strong></h1>
</div>
</div>
<div class="container">
<div class="col-md-1"></div>
<div class="col-md-6">
<div class="notifications">
<h2>Notifications</h2>
<div class="card" ng-repeat="notif in notifs" ng-if="notif">
<div class="cardType"><img src="./assets/{{(notif.type).toLowerCase()}}.svg"></div>
<h1 id="card-title">{{notif.title}}</h1>
<p>{{notif.description}}</p>
<p id="timestamp">{{notif.date | date:'shortTime'}}</p>
</div>
</div>
</div>
<div class="col-md-4">
<h2>Schedule</h2>
<h2>Social</h2>
<h2>Prizes</h2>
</div>
<div class="col-md-1"></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
<script src="build/app.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>