-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (63 loc) · 2.69 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
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>An epic title</title>
<meta name="this is an epic description">
<meta name="author" content="Richard Lems">
<meta name="thumbnail" content="images/thumb.jpg" />
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900' rel='stylesheet' type='text/css'>
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style.css">
<!-- –––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/handlebars.min-latest.js"></script>
<script src="js/templates.js"></script>
<script src="js/data.js"></script>
</head>
<body>
<!-- –––––––––––––––––––––––––––––––––––––––––––––– -->
<section id="header">
<div class="container">
<h1>ojo</h1>
<p>
good day sir.
</p>
</div>
</section>
<section id="thing">
<div class="container" id="poop">
<h1>Goedendag</h1>
<p>
hallo met template.
</p>
</div>
</section>
<section>
<div class="container">
</div>
</section>
<!-- templates -->
<!-- –––––––––––––––––––––––––––––––––––––––––––––– -->
<script id="project-template" type="text/x-handlebars-template">
{{#projects}}
<div class="project">
{{title}}
</div>
{{/projects}}
</script>
<!-- –––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>