-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpage.html
More file actions
48 lines (38 loc) · 1.17 KB
/
page.html
File metadata and controls
48 lines (38 loc) · 1.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
{% if page.title %}
<title>UoB Computer Science Society - {{ page.title }}</title>
{% else %}
<title>UoB Computer Science Society</title>
{% endif %}
<meta name="description" content="{{site.description}}">
<link rel="shortcut icon" type="image/png" href="favicon.ico"/>
<meta name=viewport content="width=device-width, initial-scale=1">
<script src="{{ '/js/hamburger.js' | relative_url }}" type="module"></script>
<link rel="stylesheet" href="{{ '/css/normalize.css' | relative_url }}">
<link rel="stylesheet" href="{{ '/css/main.css' | relative_url }}">
{% if page.favicon %}
<link rel="icon" type="image/x-icon" href="{{ page.favicon }}">
{% endif %}
{% if page.styles %}
{% for style in page.styles %}
<link rel="stylesheet" href="{{ style | relative_url }}">
{% endfor %}
{% endif %}
{% if page.scripts %}
{% for script in page.scripts %}
<script src="{{ script | relative_url }}"></script>
{% endfor %}
{% endif %}
{% seo %}
</head>
<body>
{% include header.html %}
<main>
{% include ball_photos_banner.html %}
{{ content }}
</main>
{% include footer.html %}
</body>
</html>