diff options
Diffstat (limited to 'rawdog/page.template')
| -rw-r--r-- | rawdog/page.template | 34 | 
1 files changed, 34 insertions, 0 deletions
| diff --git a/rawdog/page.template b/rawdog/page.template new file mode 100644 index 0000000..60c695b --- /dev/null +++ b/rawdog/page.template @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html> +	<head> +		<title>Blog</title> +		<link rel="stylesheet" href="/style/main.css" type="text/css"> +		<meta name="robots" content="noindex,nofollow,noarchive"> +		__refresh__ +	</head> +	<body> +		<header> +			<h1>Blog</h1> +			<nav> +				<ul> +					<li><a href="/">Home</a></li> +					<li><a href="/projects">Projects</a></li> +					<li class="selected"><a href="/blog">Blog</a></li> +					<li><a href="/privacy">Privacy</a></li> +					<li><a href="/contact">Contact</a></li> +				</ul> +			</nav> +		</header> +		<main> +			<section class="items">__items__</section> +			<section class="feeds"> +				<h2>Feeds</h2> +				__feeds__ +			</section> +		</main> +		<footer> +			<p id="aboutrawdog">Generated by <a href="http://offog.org/code/rawdog.html">rawdog</a> version +				__version__</p> +		</footer> +	</body> +</html> | 
