2016-06-12 20:06:00 -04:00
|
|
|
<!DOCTYPE html>
|
2018-01-01 16:20:50 -05:00
|
|
|
<html lang="{{ site.lang | default: "en-US" }}">
|
2016-06-14 20:28:56 -04:00
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2017-01-03 20:07:47 -05:00
|
|
|
{% if page.collectionpage %}
|
|
|
|
{% assign collectiondata = site.collections | where: "label", page.collectionpage | first %}
|
2017-01-03 19:41:34 -05:00
|
|
|
<title>{{ collectiondata.title }} - {{ site.title }}</title>
|
|
|
|
{% else %}
|
2017-01-03 20:07:47 -05:00
|
|
|
<title>{{ page.title }} - {{ site.title }}</title>
|
2016-07-29 04:18:34 -04:00
|
|
|
{% endif %}
|
2016-06-14 20:28:56 -04:00
|
|
|
|
2018-01-17 19:49:52 -05:00
|
|
|
<link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
|
|
|
|
{% if site.favicon %}
|
|
|
|
<link rel="shortcut icon" href="{{ site.favicon }}">
|
|
|
|
{% else %}
|
2017-01-04 17:36:30 -05:00
|
|
|
<link rel="shortcut icon" href="{{ site.logo }}">
|
2018-01-17 19:49:52 -05:00
|
|
|
{% endif %}
|
2016-06-14 20:28:56 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
2016-06-19 13:42:46 -04:00
|
|
|
|
2016-06-14 20:28:56 -04:00
|
|
|
{{ content }}
|
|
|
|
|
2018-01-02 05:45:55 -05:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans:400,400i,700|Neuton:400,700" rel="stylesheet">
|
2016-06-14 20:28:56 -04:00
|
|
|
</body>
|
2016-06-12 20:06:00 -04:00
|
|
|
</html>
|