diff options
author | Justin Mayer <entrop@gmail.com> | 2013-03-30 11:39:33 -0700 |
---|---|---|
committer | Justin Mayer <entrop@gmail.com> | 2013-03-30 11:39:33 -0700 |
commit | c35a3b96589226c4280b43be781f4a97ab964673 (patch) | |
tree | d33883b735f92f53e68b274a5aa95b24ba6170a2 /nmnlist/templates/base.html | |
parent | 40cb5eb28b50475c355bbb8de9e535d14afb8e7a (diff) | |
parent | bfa7e41948f91f2f0e300a1bf6539192ab26214b (diff) | |
download | pelican-themes-c35a3b96589226c4280b43be781f4a97ab964673.tar.gz |
Merge pull request #83 from Tastalian/master
New theme "nmnlist"
Diffstat (limited to 'nmnlist/templates/base.html')
-rw-r--r-- | nmnlist/templates/base.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/nmnlist/templates/base.html b/nmnlist/templates/base.html new file mode 100644 index 0000000..ccbe1ba --- /dev/null +++ b/nmnlist/templates/base.html @@ -0,0 +1,50 @@ +<!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 %} + + <!--[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> +{% include 'github.html' %} + {% block content %} + {% endblock %} + + <footer> + <nav> + <ul> + {% for page in PAGES %} + <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>{% if not loop.last %} ::{% endif %}</li> + {% endfor %} + {% 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 %} + </ul> + </nav> + <p id="theme-credit">Proudly powered by <a href="http://docs.notmyidea.org/alexis/pelican/">pelican</a></p> + </footer> + +{% include 'analytics.html' %} +{% include 'piwik.html' %} +{% include 'disqus_script.html' %} +</body> +</html> |