Blog/assets/templates/static/contact.html

34 lines
1.0 KiB
HTML
Raw Permalink Normal View History

2023-08-29 22:18:46 -05:00
<!doctype html>
<html lang="en">
<head>
<title>Contact</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2024-07-26 11:45:46 -05:00
<meta name="description" content="Contact Price Hiller" />
2023-08-29 22:18:46 -05:00
<link href="/style/style.css" rel="stylesheet" />
<link href="/style/contact.css" rel="stylesheet" />
</head>
{% include "nav.html" %}
<body>
<div class="body-wrapper">
<div class="page-title">Contact Info</div>
<p>I can be reached in primarily two locations:
<ul>
2024-09-26 11:52:44 -05:00
<li><a href="mailto:price@price-hiller.com">price@price-hiller.com</a></li>
<li><a href="https://github.com/PriceHiller/blog">At the Github repository for this website</a></li>
2023-08-29 22:18:46 -05:00
</ul>
<p>
I should take no more than 48 hours to get back to you. If you haven't received a response in 48 hours, please
send or update a comment with a ping to me. I probably earmarked it and forgot to come back to it or didn't see
it.
</p>
</div>
</body>
{% include "footer.html" %}
</html>