2016-06-13 01:06:00 +01:00
|
|
|
<!DOCTYPE html>
|
2016-06-15 01:28:56 +01:00
|
|
|
<html lang="en-GB">
|
|
|
|
|
<head>
|
|
|
|
|
<!-- General meta -->
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2017-01-04 00:41:34 +00:00
|
|
|
|
2017-01-04 01:07:47 +00:00
|
|
|
{% if page.collectionpage %}
|
|
|
|
|
{% assign collectiondata = site.collections | where: "label", page.collectionpage | first %}
|
2017-01-04 00:41:34 +00:00
|
|
|
<title>{{ collectiondata.title }} - {{ site.title }}</title>
|
|
|
|
|
{% else %}
|
2017-01-04 01:07:47 +00:00
|
|
|
<title>{{ page.title }} - {{ site.title }}</title>
|
2016-07-29 09:18:34 +01:00
|
|
|
{% endif %}
|
2016-06-15 01:28:56 +01:00
|
|
|
|
2017-01-04 00:41:34 +00:00
|
|
|
<link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
|
|
|
|
|
|
|
|
|
|
{% include site-favicons.html %}
|
2016-06-15 01:28:56 +01:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2017-01-04 00:41:34 +00:00
|
|
|
{% include site-icons.svg %}
|
2016-06-19 18:42:46 +01:00
|
|
|
|
2016-06-15 01:28:56 +01:00
|
|
|
{{ content }}
|
|
|
|
|
|
2017-01-04 01:07:47 +00:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans|Neuton" rel="stylesheet">
|
2016-06-15 01:28:56 +01:00
|
|
|
</body>
|
2016-06-13 01:06:00 +01:00
|
|
|
</html>
|