diff options
Diffstat (limited to 'blog/index.html')
| -rw-r--r-- | blog/index.html | 79 | 
1 files changed, 79 insertions, 0 deletions
diff --git a/blog/index.html b/blog/index.html new file mode 100644 index 0000000..3161591 --- /dev/null +++ b/blog/index.html @@ -0,0 +1,79 @@ +<!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> + +    /* the weird formating is because its going to be used in a python format +       string. +     */ +body { +    color: black; +    background-image: url('../images/blog_background.png'); +} + +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> +                    <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> +        </table> + +        <!-- Python will insert the articles from rss here --> +         +    <table border="1" width="60%"> +        <tr><td><h2>Overthinking</h2>--- Sat, 29 Mar 2025 11:42:00 GMT</td></tr> +        <tr><td> +  <p> +    Whenver I decide to add something to this website I always overthink on how +    to add the thing. In general I just overthink how I will do everything. It +    slows me down. Right now I am overthinking trying to think what to write +    and how to format it. I always end up doing way less when what I planned +    on doing. My partner overthinks a lot to. We overthink together. +    Though we overthink in different ways. I always end up going fuck this +    and throwing together a terrible mess while he just ends up giving up +    from the start. +    <br/><br/> +    Overthinking is just as much of a power as it is a curse. It fuels my +    ideas and thought process just as much as it slows me down. Its a quite +    difficult weapon to use but still quite deadly indeed. +    <br/><br/> +    Next time you overthink do what I do: eat junk food. +  </p> +</td></tr> +    </table> +     +    </center> +</body> +</html> +  | 
