diff options
author | skami <skami@skami-laptop.dyndns.org> | 2011-02-13 20:22:23 +0100 |
---|---|---|
committer | skami <skami@skami-laptop.dyndns.org> | 2011-02-13 20:22:23 +0100 |
commit | 3072332a1549bbdbc458c13112b6013716c5782b (patch) | |
tree | 1913657c03b86597d01425e674a78f8b8a6bfb83 /lightweight/templates/base.html | |
parent | 079da3ce990ccc101b58fe1b5ded8342d52244a6 (diff) | |
download | pelican-themes-3072332a1549bbdbc458c13112b6013716c5782b.tar.gz |
Ajout d'un thème
Diffstat (limited to 'lightweight/templates/base.html')
-rw-r--r-- | lightweight/templates/base.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lightweight/templates/base.html b/lightweight/templates/base.html new file mode 100644 index 0000000..14a0d11 --- /dev/null +++ b/lightweight/templates/base.html @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE html> +<html lang="{{ DEFAULT_LANG }}" xmlns="http://www.w3.org/1999/xhtml"> +<head> + <title>{% block title %}{{ SITENAME }}{%endblock%}</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <link rel="stylesheet" href="{{ SITEURL }}/theme/css/main.css" type="text/css" /> + <link href="{{ SITEURL }}/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} - Flux ATOM" /> +</html> +<body> +<div id="page"> + + <header id="header"> + <h1><a href="{{ SITEURL }}/index.html">{{ SITENAME }}</a></h1> + </header> + +{% include 'menu.html' %} + + <section id="content"> +{% block content %} +{% endblock %} + </section> <!-- /#content --> + +{% include 'sidebar.html' %} + + + <footer id="footer"> + <p>Propulsé par <a href="http://docs.notmyidea.org/alexis/pelican/index.html">Pelican</a>.</p> + </footer> +</div> <!-- /#page --> +</body> +</html> |