diff options
Diffstat (limited to 'blog/template.html')
| -rw-r--r-- | blog/template.html | 46 | 
1 files changed, 46 insertions, 0 deletions
diff --git a/blog/template.html b/blog/template.html new file mode 100644 index 0000000..719d3f3 --- /dev/null +++ b/blog/template.html @@ -0,0 +1,46 @@ +<!DOCTYPE html> +<html> +  +<head> +    <title>Nathan's shitty blog</title> +    <link rel="alternate" type="application/rss+xml" title="Nathan's shitty blog" href="feed.xml"> + +<style> +     +body { +    color: black; +    background-image: url(''); +} + +table { +	color: black; +	background-color: #bebebe; +	margin-top: 10px; +	margin-bottom: 10px; +	margin-left: 10px; +	margin-right: 10px; +} + +</style> + +</head> +  +<body> +    <a href="index.html"><img src="../images/back_home.png" alt="Back to home page"/></a> +     +    <center> +        <table border="1" width="60%"> +        	<tr> +        		<td> +                    <h1>Nathan's shitty blog</h1> +                    <p> +                    </p> +                </td> +            </tr> +        </table> + +        <!-- Python will insert the articles from rss here --> +        {articles} +    </center> +</body> +</html>  | 
