diff options
-rw-r--r-- | project/assets/css/default.css | 11 | ||||
-rw-r--r-- | project/templates/about.html | 32 |
2 files changed, 42 insertions, 1 deletions
diff --git a/project/assets/css/default.css b/project/assets/css/default.css index 21d7546..8c47a6d 100644 --- a/project/assets/css/default.css +++ b/project/assets/css/default.css @@ -21,6 +21,17 @@ code { } +h2 { + padding-top: 1em; + padding-bottom: 1em; +} + + +h4 { + padding-top: 2em; +} + + /* A bunch of nonsense to make the navbar diff --git a/project/templates/about.html b/project/templates/about.html index df4d00d..8458d3c 100644 --- a/project/templates/about.html +++ b/project/templates/about.html @@ -4,5 +4,35 @@ {% block title %}About{% endblock %} {% block content %} - <p>Content for about page goes here</p> + +<h4>About Me</h4> + +<p>Have you ever looked at the way things are done and just wanted to make it <em>better</em>? I feel +like that all the time. It's not even a matter of introducing something new. The field of computing is +littered with ideas that are well researched, have working prototypes, yet ended up abandoned decades +ago for no apparent reason. I expect other fields are probably similar. One of my goals in life is to +reduce this gap between what's known and what's actually used. Mainly in software development, because +that's what I'm most familiar with.</p> + +<p>So this website is primarily about hosting and talking about programming projects. Expect a bunch of +smaller less useful pieces before I get to the good stuff. But also expect electronics, civics, foreign +languages... basically anything catching my interest about which I can say something data driven or +otherwise interesting.</p> + +<h4>Qualifications</h4> + +<ul> + <li>Bachelor of Computer Science, University of New England, 2011</li> + <li>Accounts Administration AQF Certificate III, 2016</li> +</ul> + +<p>In 2012 I almost completed an extra honours year in computer science, before finding out that I'm +really not cut out for research. My mindset is too focused on solving problems. Practical problems.</p> + +<h4>Contact</h4> + +<p>(There should be an email address here, but I haven't yet set up an email server to receive it. Make +a note of it. Until I do, you'll just have to make do with these gloriously javascript-free webpages +instead.)</p> + {% endblock %} |