personal-website/views/pages/contact.ejs

24 lines
482 B
Plaintext
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
2022-06-20 18:40:28 -04:00
<%- include('../partials/include') %>
</head>
<body class="d-flex flex-column min-vh-100">
<header>
2022-06-20 18:40:28 -04:00
<%- include('../partials/nav') %>
</header>
2018-07-28 01:15:46 -04:00
<div class="container mt-5 topMargin">
<h1>Contact me</h1>
<p>Questions? Comments? Spam? Please email me with the below address:</p>
<h4>len0rd"AT"fastmail.co.uk</h4>
</div>
2022-06-20 18:40:28 -04:00
<%- include('../partials/footer') %>
<%- include('../partials/post_html_include') %>
</body>
2022-06-20 18:40:28 -04:00
</html>