diff options
Diffstat (limited to 'src/template.txt')
-rw-r--r-- | src/template.txt | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/template.txt b/src/template.txt new file mode 100644 index 0000000..942038d --- /dev/null +++ b/src/template.txt @@ -0,0 +1,61 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" +"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" lang="it" xml:lang="it"> +<head> + <title><% title %> - LIFO</title> + <meta http-equiv="Content-Type" + content="text/html; charset=<% final_encoding %>" /> + <link rel="stylesheet" + href="<% path_to_root %>style/default.css" + type="text/css" /> +</head> +<body> + +<div id="menubar"> + <div><img src="<% path_to_root %>img/logo.png" width="160" height="160" /></div> + <# + minibar(sections, + item='<span class="nav-item"><span class="hidden">[</span><a href="%s">%s</a><span class="hidden">]</span></span>', + intro='<span class="nav-header">pagine</span>', + subintro='<span class="nav-header">sezioni</span>', + liststart='', + listend='', + displayval='crumb' + ) + #> +</div> + +<div id="crumbs"> + <# print_crumbs(breadcrumbs,item='%s',divider = '»',) #> +</div> + +<div id="main"> + <a name="startcontent" id="startcontent"></a> + <% body %> + <address><a href="mailto:info@lifolab.org">Invia un commento</a></address> + <div id="end"> + <p><a href="#startcontent">Torna all'inizio</a></p> + </div> +</div> + +<div id="footer"> + <div id="last-update"> + Ultimo aggiornamento: <% modtime %> + </div> + <div id="source"> + Pagina proveniente da http://www.lifolab.org/<% pagepath %> + </div> + <div id="copyright"> + © Copyright + </div> + + <div id="rest2web"> + Generato con + <a href="http://www.voidspace.org.uk/python/rest2web/">rest2web</a> + a partire da + <a href="http://docutils.sourceforge.net">ReStructured Text</a>. + </div> +</div> + +</body> +</html> |