-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
36 lines (36 loc) · 1.22 KB
/
page.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ page.title }}</title>
{% include meta.html %}
</head>
<body>
{% if page.bg %}
{% capture img_dir %}/img/content/{% if page.categories[0] %}{{ page.categories[0] }}/{% endif %}{% if page.slug %}{{ page.slug }}/{% endif %}{% endcapture %}
<style type="text/css">
header {
background-image: url({{ img_dir }}{{ page.bg }}) !important
}
</style>
{% endif %}
<header>
<h1><a href="/">{{ site.name }}</a></h1>
<nav>
{% for link in site.links %}
<a href="{{ link.url }}">{{ link.name }}</a>
{% endfor %}
</nav>
</header>
<main>
{% if page.categories[0] %}
{% assign project_page = site.projects | where:"slug",page.categories[0] %}
{% assign project_page = project_page[0] %}
<span class="project-link"><a href="{{ project_page.url }}">{{ project_page.title }}</a></span>
{% endif %}
<h1>{{ page.title }}</h1>
{% include convert_img_urls.html content=content %}
</main>
<footer>© Ian Glen - <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA</a> unless specified</footer>
<link href="https://fonts.googleapis.com/css2?family=Mulish&display=swap" rel="stylesheet">
</body>
</html>