-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
75 lines (74 loc) · 2.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.min.css"
/>
<link rel="stylesheet" href="css/index.css" />
<title>course slides</title>
</head>
<body>
<div class="ui container">
<span class="ui center aligned header">
<h2>
course name
</h2>
<h4>2019-2020</h4>
</span>
<div class="ui segment">
general info
</div>
<!-- <div class="ui segment">
<div class="ui list">
<div class="item">
<i class="large check circle outline thin middle aligned icon"></i>
updated for 2019
</div>
<div class="item">
<i class="large circle outline thin middle aligned icon"></i>not yet
updated (content from last year, could change a lot, could hardly
change at all)
</div>
</div>
</div> -->
<div class="ui segment">
<div class="ui relaxed divided list">
<div class="item">
<!-- check circle outline -->
<i class="large circle outline thin middle aligned icon"></i>
<div class="content">
<a class="header" href="chapter1.html">1. chapter 1</a>
<div class="description">
is all about whatever
</div>
<div class="date">last updated 25 dec 2019</div>
</div>
</div>
</div>
</div>
<div class="ui inverted vertical footer segment small">
<img
src="img/logo_white.png"
alt=""
height="30px"
style="margin-left: 10px;"
/>
<span> </span>
<!-- <span style="float: right; margin-right: 10px">
remarks? errors? mail me @ [email protected] <br />
<a href="https://pieter-hogent.github.io/web4-old/">
last year's version</a
>
</span> -->
</div>
</div>
</body>
</html>