diff options
author | François Kooman <fkooman@tuxed.net> | 2017-01-05 16:30:15 +0100 |
---|---|---|
committer | François Kooman <fkooman@tuxed.net> | 2017-01-05 16:30:15 +0100 |
commit | bdac5350008fb69f65bf0af62c32277b1e284b41 (patch) | |
tree | df9d5363b7d76c9e686e8f89e69ec624438e830a /views | |
parent | e8c53a9efd4699d628b379a715a96beb9a016de3 (diff) | |
download | www.tuxed.net-bdac5350008fb69f65bf0af62c32277b1e284b41.zip www.tuxed.net-bdac5350008fb69f65bf0af62c32277b1e284b41.tar.gz www.tuxed.net-bdac5350008fb69f65bf0af62c32277b1e284b41.tar.xz |
add contact support
Diffstat (limited to 'views')
-rw-r--r-- | views/contact.twig | 36 | ||||
-rw-r--r-- | views/footer.twig | 7 |
2 files changed, 37 insertions, 6 deletions
diff --git a/views/contact.twig b/views/contact.twig new file mode 100644 index 0000000..9b70552 --- /dev/null +++ b/views/contact.twig @@ -0,0 +1,36 @@ +{% include 'header.twig' %} + + <p> + <em>{{ blogDescription|e }}</em> + </p> + + <p><small><a href="index.html">Return to Index</a></small></p> + +<div class="content"> + + <h2>Contact</h2> + + <h3>Mail</h3> + <p> + <a href="mailto:{{ blogAuthorMail }}">{{ blogAuthorMail }}</a> + </p> + + <p> + PGP Fingerprint: <code>{{ blogAuthorMailFingerprint }}</code> + </p> + + <h3>Twitter</h3> + <p> + <a href="https://twitter.com/{{ blogAuthorTwitter }}">@{{ blogAuthorTwitter }}</a> + </p> + + <h3>GitHub</h3> + <p> + <a href="https://github.com/{{ blogAuthorGitHub }}">@{{ blogAuthorGitHub }}</a> + </p> + +</div> <!-- /content --> + +<p><small><a href="index.html">Return to Index</a></small></p> + +{% include 'footer.twig' %} diff --git a/views/footer.twig b/views/footer.twig index d3cde75..fb2743e 100644 --- a/views/footer.twig +++ b/views/footer.twig @@ -1,10 +1,5 @@ <div class="footer"> - <p>{{ blogAuthor|e }}</p> - <ul> - <li><a href="mailto:{{ blogAuthorMail|e }}"><img width="32" height="32" src="img/envelope.svg" alt="Mail"/></a></li> - <li><a href="https://twitter.com/{{ blogAuthorTwitter|e }}"><img width="32" height="32" src="img/twitter.svg" alt="Twitter"/></a></li> - <li><a href="https://github.com/{{ blogAuthorGitHub|e }}"><img width="32" height="32" src="img/github.svg" alt="GitHub" /></a></li> - </ul> + <p>© 2017 <a href="contact.html">{{ blogAuthor }}</a></p> </div> </body> |