-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (47 loc) · 1.71 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
---
---
<!DOCTYPE html>
<html>
<head>
<!-- CSS Libraries -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-social/4.2.1/bootstrap-social.css" rel="stylesheet">
<!-- JS Libraries -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<!-- JS Fonts -->
<link href='https://fonts.googleapis.com/css?family=Aldrich' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:700' rel='stylesheet' type='text/css'>
<!-- Local CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="brand-title"> <span class="brand"> mission<span class="bold-brand">bit</span></span> </h1>
<h2 class="page-title"> A selection of student projects from "Intro Web Programming"</h2>
</div>
<div class="col-md-12">
{% for assignment in site.data.assignments %}
<div class="section">
<div class="headline col-md-12">
<h2 class="title-name">{{ assignment.name }}</h2>
<p>{{ assignment.description }}</p>
<ul>
{% for project in assignment.projects %}
<li>
<a href="{{ assignment.path }}/{{ project.path }}">{{ project.name }}</a>
{% if project.description %}
— {{ project.description }}
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</body>
</html>