2019-03-06 17:01:54 -05:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< title > {% block title %}{{ SITENAME }}{%endblock%}< / title >
< meta charset = "utf-8" / >
2022-01-02 21:52:32 -05:00
< link rel = "stylesheet" href = "/theme/css/colorbox.css" >
2019-03-06 17:01:54 -05:00
< link rel = "stylesheet" href = "{{ SITEURL }}/theme/css/{{ CSS_FILE }}" type = "text/css" / >
< link href = "{{ SITEURL }}/{{ FEED_ATOM }}" type = "application/atom+xml" rel = "alternate" title = "{{ SITENAME }} ATOM Feed" / >
{% if FEED_RSS %}
< link href = "{{ SITEURL }}/{{ FEED_RSS }}" type = "application/atom+xml" rel = "alternate" title = "{{ SITENAME }} RSS Feed" / >
{% endif %}
<!-- [if IE]>
< script src = "http://html5shiv.googlecode.com/svn/trunk/html5.js" > < / script > <![endif]-->
<!-- [if lte IE 7]>
< link rel = "stylesheet" type = "text/css" media = "all" href = "{{ SITEURL }}/css/ie.css" / >
< script src = "{{ SITEURL }}/js/IE8.js" type = "text/javascript" > < / script > <![endif]-->
<!-- [if lt IE 7]>
< link rel = "stylesheet" type = "text/css" media = "all" href = "{{ SITEURL }}/css/ie6.css" / > <![endif]-->
< / head >
< body >
2021-07-27 20:49:53 -04:00
{% block content %}
{% endblock %}
2019-03-06 17:01:54 -05:00
2022-08-04 09:41:15 -04:00
< div id = "sidebar" >
2019-03-06 17:01:54 -05:00
< h1 > < a href = "{{ SITEURL }} " title = "title" > {{ SITENAME }}< / a > < / h1 >
< span class = "description" > {{ DESCRIPTION }} < / span >
< nav >
< ul >
< li > < a href = "{{ SITEURL }}/index.html" > Home< / a > < / li >
< li > < a href = "{{ SITEURL }}/posts.html" > Articles< / a > < / li >
2021-07-27 20:49:53 -04:00
< li > < a href = "https://portfolio.leanderhutton.com/" > Photography< / a > < / li >
2019-03-06 17:01:54 -05:00
< li > < a href = "{{ SITEURL }}/about.html" > About< / a > < / li >
{% if categories|length > 1 %}
<!-- <li><a href="{{ SITEURL }}/categories.html">Categories</a></li>
{% endif %}
{% if tags|length > 1 %}
< li > < a href = "{{ SITEURL }}/tags.html" > Tags< / a > < / li >
{% endif %} -->
< br / >
<!--
< li > Galleries:< / li >
{% for page in pages %}
{% if page.title != "About" and page.title !="Welcome" %}
< li > < a href = "{{ SITEURL }}/{{ page.url }}" > {{ page.title }}< / a > {% if not loop.last %}{% endif %}< / li >
{% endif %}
{% endfor %}
< br / >
-->
< li > {{ LINKS_WIDGET_NAME | default('links') }}< / li >
{% for name, link in LINKS %}
< li > < a href = "{{ link }}" > {{ name }}< / a > < / li >
{% endfor %}
< / ul >
< / nav >
< span class = "feed" > < a href = "{{ SITEURL }}/{{ FEED_RSS }}" > RSS< / a > | < a href = "{{ SITEURL }}/{{ FEED_ATOM }}" > Atom< / a > < / span >
< / div >
< div id = "footer" >
< div id = "credits" >
< span > Powered by < a href = "https://www.debian.org/" target = "_blank" > Debian GNU/Linux< / a > and < a href = "https://blog.getpelican.com/" target = "_blank" > Pelican< / a > .< / span >
< / div >
< / div >
{% include 'analytics.html' %}
{% include 'piwik.html' %}
{% include 'disqus_script.html' %}
2022-01-02 21:52:32 -05:00
< script src = "/theme/js/jquery.min.js" > < / script >
< script src = "/theme/js/jquery.colorbox-min.js" > < / script >
< script src = "/theme/js/load-colorbox.js" > < / script >
2019-03-06 17:01:54 -05:00
< / div >
< / body >
< / html >