diff options
author | Dedi Purwanto <kecebongsoft@gmail.com> | 2012-11-18 11:21:55 +0800 |
---|---|---|
committer | Dedi Purwanto <kecebongsoft@gmail.com> | 2012-11-18 11:21:55 +0800 |
commit | 5e675c85d3ad6b5b2cdaf96156859597d8107633 (patch) | |
tree | 95455800edb97d44c7b4b0b06c010f249fa53ea1 /cebong/templates/base.html | |
parent | 662052faa4749d3fec2ff1149e853f71d5c2b434 (diff) | |
download | pelican-themes-5e675c85d3ad6b5b2cdaf96156859597d8107633.tar.gz |
Added cebong theme files
Diffstat (limited to 'cebong/templates/base.html')
-rw-r--r-- | cebong/templates/base.html | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/cebong/templates/base.html b/cebong/templates/base.html new file mode 100644 index 0000000..782a0ca --- /dev/null +++ b/cebong/templates/base.html @@ -0,0 +1,88 @@ +<!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" /> + {% if FEED_ATOM %} + <link href="{{ FEED_DOMAIN }}/{{ FEED_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Atom Feed" /> + {% endif %} + {% if FEED_RSS %} + <link href="{{ FEED_DOMAIN }}/{{ FEED_RSS }}" type="application/rss+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 id="index" class="home"> +{% include 'github.html' %} + <header id="banner" class="body"> + <h1><a href="{{ SITEURL }}">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a></h1> + {% if SITETAGLINE %} + <div id="tagline">{{SITETAGLINE}}</div> + {% endif %} + <nav> + {% for title, link in MENUITEMS %} + <a href="{{ link }}">{{ title }}</a> + {% endfor %} + {% if DISPLAY_PAGES_ON_MENU %} + {% for page in PAGES %} + <a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a> + {% endfor %} + {% endif %} + {% for cat, null in categories %} + <a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a> + {% endfor %} + </nav> + </header><!-- /#banner --> + {% block content %} + {% endblock %} + <section id="extras" class="body"> + {% if LINKS %} + <div class="blogroll"> + <h2>blogroll</h2> + <ul> + {% for name, link in LINKS %} + <li><a href="{{ link }}">{{ name }}</a></li> + {% endfor %} + </ul> + </div><!-- /.blogroll --> + {% endif %} + {% if SOCIAL %} + <div class="social"> + <h2>social</h2> + <ul> + <li><a href="{{ FEED_DOMAIN }}/{{ FEED_ATOM }}" type="application/atom+xml" rel="alternate">atom feed</a></li> + {% if FEED_RSS %} + <li><a href="{{ FEED_DOMAIN }}/{{ FEED_RSS }}" type="application/rss+xml" rel="alternate">rss feed</a></li> + {% endif %} + + {% for name, link in SOCIAL %} + <li><a href="{{ link }}">{{ name }}</a></li> + {% endfor %} + </ul> + </div><!-- /.social --> + {% endif %} + </section><!-- /#extras --> + + <footer id="contentinfo" class="body"> + <address id="about" class="vcard body"> + {{FOOTERTEXT}} Proudly powered by <a href="http://getpelican.com/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>. Theme is using <a href="http://github.com/kecebongsoft/pelican-theme-cebong" target="_blank">cebong</a>. + </address><!-- /#about --> + + </footer><!-- /#contentinfo --> + +{% include 'analytics.html' %} +{% include 'piwik.html' %} +{% include 'disqus_script.html' %} +</body> +</html> |