29 lines
697 B
HTML
29 lines
697 B
HTML
|
{% extends "layout/base.html" %}
|
||
|
{% block title %}Contact Me{% endblock %}
|
||
|
{% block content %}
|
||
|
<section class="first">
|
||
|
<h1>Contact Me</h1>
|
||
|
|
||
|
<p>
|
||
|
Below are some places you can find me on the Internet and ways you can
|
||
|
contact me.
|
||
|
</p>
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td align="right">Email:</td>
|
||
|
<td>
|
||
|
<a href="https://www.kirsle.net/contact">Send me an e-mail here</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<h2>External Links</h2>
|
||
|
|
||
|
<ul>
|
||
|
<li><a href="https://www.kirsle.net/">Kirsle.net</a>, my web blog.</a></li>
|
||
|
<li><a href="https://github.com/kirsle">GitHub</a></li>
|
||
|
</ul>
|
||
|
</section>
|
||
|
{% endblock %}
|