diff options
Diffstat (limited to 'blog/template.html')
| -rw-r--r-- | blog/template.html | 24 | 
1 files changed, 17 insertions, 7 deletions
diff --git a/blog/template.html b/blog/template.html index 719d3f3..bd460fe 100644 --- a/blog/template.html +++ b/blog/template.html @@ -6,34 +6,44 @@      <link rel="alternate" type="application/rss+xml" title="Nathan's shitty blog" href="feed.xml">  <style> -     -body { + +    /* the weird formating is because its going to be used in a python format +       string. +     */ +body {{      color: black; -    background-image: url(''); -} +    background-image: url('../images/blog_background.png'); +}} -table { +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> +    <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> +                    <a href="feed.xml" target="_blank"> +                        <img src="../images/rss.png" alt="rss"/> +                    </a>                      <p> +                        I dont know if I will post often but here you go fucking world! +                        There is no topic, just me posting whatever is on my mind. Add +                        the feed to your feedreader <b>(you better have one)</b> so you +                        can stay updated on the things on my mind.                      </p>                  </td>              </tr>  | 
