dimension theme

This commit is contained in:
Justin 2018-05-17 10:34:07 -04:00
parent 0c44a2e2fe
commit c8a4fc4567
73 changed files with 10250 additions and 0 deletions

View file

@ -0,0 +1,42 @@
+++
title = "Formspree"
weight = 60
menuname = "Contact 2"
draft = true
+++
<form id="contactform" method="post" action="https://formspree.io/insert.your@mail.adress">
<div class="field half first">
<input type="text" name="name" id="name" placeholder="Name"/>
</div>
<div class="field half">
<input type="email" id="email" name="email" placeholder="Email">
</div>
<div class="field">
<textarea name="message" id="message" rows="4" placeholder="Message"></textarea>
</div>
<ul class="actions">
<li><input type="submit" value="Send message" class="special" /></li>
<li><input type="reset" value="Reset" /></li>
</ul>
<input type="hidden" name="_next" value="?sent#formspree" />
<input type="hidden" name="_subject" value="Subject for your mail like new message" />
<input type="text" name="_gotcha" style="display:none" />
</form>
<span id="contactformsent">Thank you for your message</span>
<script>
$(document).ready(function($) {
$(function(){
if (window.location.search == "?sent") {
$('#contactform').hide();
$('#contactformsent').show();
} else {
$('#contactformsent').hide();
}
});
});
</script>
{{< socialLinks >}}