diff options
Diffstat (limited to 'project/templates/about.html')
-rw-r--r-- | project/templates/about.html | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/project/templates/about.html b/project/templates/about.html index 3079224..55c7f36 100644 --- a/project/templates/about.html +++ b/project/templates/about.html @@ -1,8 +1,18 @@ {% extends "base.html" %} + + {% block title %}About{% endblock %} + + +{% block style %} + <link href="/css/about.css" rel="stylesheet"> +{% endblock %} + + + {% block content %} <h4>About Me</h4> @@ -31,9 +41,17 @@ really not cut out for research. My mindset is too focused on solving problems. <h4>Contact</h4> -<p> -Email: TBA<br> -IRC: jedb on irc.freenode.net -</p> +<table> + <tr> + <td>Email:</td> + <td>contact@<span style="display:none">REMOVETHIS</span>jedbarber.id.au</td> + </tr> + <tr> + <td>IRC:</td> + <td>jedb on irc.freenode.net</td> + </tr> +</table> {% endblock %} + + |