2015-01-02 02:27:03 -05:00
<!DOCTYPE html>
< html lang = "en" class = "no-js" >
< head >
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
< meta charset = "utf-8" />
< title > {% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</ title >
{% if meta.description %}
< meta name = "description" content = "{{ meta.description }}" >
{% endif %}
{% if meta.robots %}
< meta name = "robots" content = "{{ meta.robots }}" >
{% endif %}
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
< link rel = "stylesheet" href = "{{ theme_url }}/css/normalize.css" >
< link rel = "stylesheet" href = "{{ theme_url }}/css/skeleton.css" >
2023-12-03 21:49:13 +00:00
< link rel = "stylesheet" href = "{{ theme_url }}/css/custom-h-nav.css" >
2015-01-02 02:27:03 -05:00
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
< link rel = "icon" type = "image/png" href = "{{ theme_url }}/images/favicon.png" >
</ head >
< body >
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
2023-12-03 21:49:13 +00:00
< header >
< div class = "container" >
< div class = "row" >
2024-02-16 19:18:57 +00:00
< p >< a href = "{{ base_url }}" > {{ site_title }}</ a ></ p >
2015-01-02 02:27:03 -05:00
< ul class = "nav" >
{% for page in pages %}
< li >< a href = "{{ page.url }}" > {{ page.title }}</ a ></ li >
{% endfor %}
</ ul >
2023-12-03 21:49:13 +00:00
</ div >
2015-01-02 02:27:03 -05:00
</ div >
2023-12-03 21:49:13 +00:00
</ header >
< section class = "content container" >
< div class = "row" >
2015-01-02 02:27:03 -05:00
{{ content }}
</ div >
2023-12-03 21:49:13 +00:00
</ section >
< footer >
< div class = "container" >
< div class = "row" >
2024-02-16 19:03:01 +00:00
Unless otherwise stated, work on this website is by Jennifer C J Radtke. < p > This work is licensed under < a href = "http://creativecommons.org/licenses/by-nc-sa/4.0/?ref=chooser-v1" target = "_blank" rel = "license noopener noreferrer" style = "display:inline-block;" > CC BY-NC-SA 4.0</ a ></ p >
2023-12-03 21:49:13 +00:00
</ div >
</ div >
</ footer >
2015-01-02 02:27:03 -05:00
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</ body >
</ html >