diff options
Diffstat (limited to 'blog/template.html')
| -rw-r--r-- | blog/template.html | 16 | 
1 files changed, 6 insertions, 10 deletions
diff --git a/blog/template.html b/blog/template.html index de3af96..d4eeffb 100644 --- a/blog/template.html +++ b/blog/template.html @@ -7,22 +7,19 @@  <style> -    /* the weird formating is because its going to be used in a python format -       string. -     */ -body {{ +body {      color: black;      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> @@ -50,13 +47,12 @@ table {{              <tr>                  <td> -                    {article_list} +                    ~a                  </td>              </tr>          </table> -        <!-- Python will insert the articles from rss here --> -        {articles} +        ~a      </center>  </body>  </html>  | 
