diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/archiveitem.html | 3 | ||||
-rw-r--r-- | templates/default.html | 64 | ||||
-rw-r--r-- | templates/default.html.orig | 23 | ||||
-rw-r--r-- | templates/index.html | 1 | ||||
-rw-r--r-- | templates/post.html | 13 | ||||
-rw-r--r-- | templates/post_short.html | 13 | ||||
-rw-r--r-- | templates/postitem.html | 4 | ||||
-rw-r--r-- | templates/posts.html | 1 |
8 files changed, 122 insertions, 0 deletions
diff --git a/templates/archiveitem.html b/templates/archiveitem.html new file mode 100644 index 0000000..60da335 --- /dev/null +++ b/templates/archiveitem.html @@ -0,0 +1,3 @@ +<li> + <a href="$url$">$title$</a> +</li> diff --git a/templates/default.html b/templates/default.html new file mode 100644 index 0000000..db34114 --- /dev/null +++ b/templates/default.html @@ -0,0 +1,64 @@ +<!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" dir="ltr" lang="en-US"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title>Universe Factory - $title$</title> + + <link rel="stylesheet" id="lightword_stylesheet-css" href="/css/style.css" type="text/css" media="all" /> + <link rel="stylesheet" id="lightword_stylesheet_original-css" href="/css/original.css" type="text/css" media="all" /> + <style type="text/css"> + #content-body, x:-moz-any-link, x:default {float:none; margin-right:25px;} + </style> + </head> + + <body class="home blog"> + <div id="wrapper"> + + <div id="top_cufon"><h1 id="logo"><a name="top" title="Universe Factory" href="/">Universe Factory</a> <small>Because one universe is not enough</small></h1></div> + + <div id="header"> + <a id="rss-feed" title="Syndicate this site using RSS" href="/feed/">Subscribe via RSS</a> + + <div id="top_bar"> + <div class="center_menu"> + <ul id="front_menu" > + <li><a class="s" title="Home" href="/"><span>Home</span></a></li> + </ul> + </div> + </div> + </div> + <div id="content"> + <div id="content-body"> + $body$ + + <!--<div class="newer_older"> + <span class="newer"> </span> + <span class="older"> <a href="/2/" >Older Entries »</a></span> + </div>--> + </div> + <div class="content-sidebar"> + <h3>Blogroll</h3> + <ul class="xoxo blogroll"> + </ul> + + <h3>Tags</h3><div class="tagcloud"> + $tagcloud$ + </div> + <h3>Archive</h3> + <ul> + $archive$ + </ul> + </div><div class="clear"></div> + </div> + <div id="footer"> + <span class="text"> + Copyright © 2012 <a href="http://blog.universe-factory.net/">Universe Factory</a> · Powered by <a href="http://github.com/jaspervdj/hakyll" title="Hakyll">Hakyll</a><br/> + Based on <a href="http://www.lightword-design.com/" title="Lightword Theme">Lightword Theme</a> by Andrei Luca adapted for Hakyll + <a title="Go to top" class="top" href="#top">Go to top ↑</a> + </span> + </div> + </div> + </body> +</html> diff --git a/templates/default.html.orig b/templates/default.html.orig new file mode 100644 index 0000000..0537065 --- /dev/null +++ b/templates/default.html.orig @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!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" xml:lang="en" lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <title>SimpleBlog - $title$</title> + <link rel="stylesheet" type="text/css" href="/css/default.css" /> + <link rel="alternate" + type="application/rss+xml" + title="SimpleBlog" + href="/rss.xml" /> + </head> + <body> + <h1>SimpleBlog - $title$</h1> + <div id="navigation"> + <a href="/">Home</a> + <a href="/posts.html">All posts</a> + </div> + + $body$ + </body> +</html> diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..55579d1 --- /dev/null +++ b/templates/index.html @@ -0,0 +1 @@ +$posts$ diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..7505058 --- /dev/null +++ b/templates/post.html @@ -0,0 +1,13 @@ +<div class="post type-post status-publish format-standard hentry"> + <div class="only_date"> + $date$ + </div> + <h2>$title$</h2> + <p>$body$</p> + + <div class="cat_tags clear"> + <span class="category">Tagged as: $prettytags$</span> + <div class="clear"></div> + </div> + <div class="cat_tags_close"></div> +</div> diff --git a/templates/post_short.html b/templates/post_short.html new file mode 100644 index 0000000..06242ca --- /dev/null +++ b/templates/post_short.html @@ -0,0 +1,13 @@ +<div class="post type-post status-publish format-standard hentry"> + <div class="only_date"> + $date$ + </div> + <h2><a title="$title$" href="$url$" rel="bookmark">$title$</a></h2> + <p>$body$</p> + + <div class="cat_tags clear cat_tags_continue"> + <span class="category">Tagged as: $prettytags$</span> + <span class="continue"><a title="$title$" href="$url$">Continue reading</a></span><div class="clear"></div> + </div> + <div class="cat_tags_close cat_tags_continue_close"></div> +</div> diff --git a/templates/postitem.html b/templates/postitem.html new file mode 100644 index 0000000..ccbb58e --- /dev/null +++ b/templates/postitem.html @@ -0,0 +1,4 @@ +<li> + <a href="$url$">$title$</a> + - <em>$date$</em> - by <em>$author$</em> +</li> diff --git a/templates/posts.html b/templates/posts.html new file mode 100644 index 0000000..55579d1 --- /dev/null +++ b/templates/posts.html @@ -0,0 +1 @@ +$posts$ |