diff options
author | David Runge <dave@sleepmap.de> | 2019-04-21 00:27:46 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2019-04-21 00:27:46 +0200 |
commit | a19010df7bfab18a7cfb178b89ef982882b887d7 (patch) | |
tree | 91b77b51528155701c362cbdc97db7c006074363 /sleepmap-theme/templates/base.html | |
parent | e67d9209cc5cee8dbe9eca65f357de8926fa46d8 (diff) | |
download | sleepmap-a19010df7bfab18a7cfb178b89ef982882b887d7.tar.gz sleepmap-a19010df7bfab18a7cfb178b89ef982882b887d7.tar.bz2 sleepmap-a19010df7bfab18a7cfb178b89ef982882b887d7.tar.xz sleepmap-a19010df7bfab18a7cfb178b89ef982882b887d7.zip |
sleepmap-theme: Removing unrequired pelican theme.
Diffstat (limited to 'sleepmap-theme/templates/base.html')
-rw-r--r-- | sleepmap-theme/templates/base.html | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/sleepmap-theme/templates/base.html b/sleepmap-theme/templates/base.html deleted file mode 100644 index 7d51e63..0000000 --- a/sleepmap-theme/templates/base.html +++ /dev/null @@ -1,82 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> - <head> - <title>{% block title %}{{ SITENAME }}{%endblock%}</title> - <meta charset="utf-8" /> - <link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}" type="text/css" /> - <link href="{{ SITEURL }}/{{ FEED }}" 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 %} - <link rel="icon" type="image/ico" href="{{ SITEURL }}/icons/sleepmap.ico"> - </head> - - <body id="index" class="home"> - <header id="banner"> - <h1> - <a href="{{ SITEURL }}">{{ SITENAME }} </a> - {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %} - </h1> - </header> <!--/#banner--> - <header id="sidemenu" class="body"> - <nav> - <h2 class="menuheader">Menu</h2> - <ul> - {% for title, link in MENUITEMS %} - <li><a href="{{ link }}">{{ title }}</a></li> - {% endfor %} - {% if DISPLAY_PAGES_ON_MENU != False %} - {% for p in pages %} - {% if p.title == "Software" or p.title == "Hardware" or p.title == "Music" or p.title == "Installations" or p.title == "About" or p.title == "Contact" or p.title == "Photos" %} - <li {% if p == page %}class="active"{% endif %}> - <a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a> - <ul> - {% for child in p.children %} - <li {% if child == page %}class="active"{% endif %}> - <a href="{{ SITEURL }}/{{ child.url }}">{{ child.title }}</a> - </li> - {% endfor %} - </ul> - </li> - {% endif %} - {% endfor %} - {% endif %} - </ul> - <h2>Categories</h2> - <ul> - {% for cat, null in categories %} - <li {% if cat == category %}class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li> - {% endfor %} - </ul> - {% if LINKS %} - <h2>Links</h2> - <ul> - {% for name, link in LINKS %} - <li><a href="{{ link }}" target="_blank">{{ name }}</a></li> - {% endfor %} - </ul> - {% endif %} - {% if SOCIAL %} - <h2>Social</h2> - <ul class="social"> - <li> - <a href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" rel="alternate">atom feed</a> - </li> - {% if FEED_RSS %} - <li> - <a href="{{ SITEURL }}/{{ FEED_RSS }}" rel="alternate">rss feed</a> - </li> - {% endif %} - {% for name, link in SOCIAL %} - <li> - <a href="{{ link }}" target="_blank">{{ name }}</a> - </li> - {% endfor %} - </ul> - {% endif %} - </nav> - </header><!-- /#sidemenu --> - {% block content %} - {% endblock %} - </body> -</html> |