diff options
author | Stéphane Caron <stephane.caron@ens.fr> | 2013-03-20 12:04:11 +0100 |
---|---|---|
committer | Stéphane Caron <stephane.caron@ens.fr> | 2013-03-20 12:04:11 +0100 |
commit | da810104cd033c1dcc25d67f8f09985a415b43b9 (patch) | |
tree | 3ab6f758a1e022e04ebd82bf09691648ecb14107 /nmnlist/templates/base.html | |
parent | 53d6c4254aa2b4781b850419d63a40527c307d71 (diff) | |
download | pelican-themes-da810104cd033c1dcc25d67f8f09985a415b43b9.tar.gz |
theme variant from mnmlist
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..e2682d5 --- /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"><a href="http://mathieu.agopian.info/mnmlist/theme.html">Theme from "mnmlist"</a></p> + </footer> + +{% include 'analytics.html' %} +{% include 'piwik.html' %} +{% include 'disqus_script.html' %} +</body> +</html> |