-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
executable file
·35 lines (32 loc) · 1.74 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
layout: page
title: Contact Me!
permalink: /contact/
---
<p>
I'm currently not accepting new clients at the moment (working for <a href="http://braceyourselfgames.com/">Brace Yourself Games</a> right now) but feel free to ask me about anything trailer related. Would be happy to give you feedback on your project, send me a rough cut of your current trailer, a build of your game, or just say hi! :)
</p>
<div class="py2">
{% if site.ajaxify_contact_form %}
<form class="form-stacked">
<input type="text" name="email" class="field-light" placeholder="Email Address">
<textarea type="text" name="content" class="field-light" rows="5" placeholder="What would you like to say?"></textarea>
<input type="hidden" name="_subject" value="New submission!" />
<input type="text" name="_gotcha" style="display:none" />
<button type='submit' class="button button-blue button-big mobile-block">Say Hello</button>
</form>
{% else %}
<form action="https://formspree.io/{{ site.email }}" method="POST" class="form-stacked">
<input type="text" name="email" class="field-light" placeholder="Email Address">
<textarea type="text" name="content" class="field-light" rows="5" placeholder="What's your project?"></textarea>
<input type="hidden" name="_format" value="plain" />
<input type="hidden" name="_next" value="{{ site.baseurl }}/thanks/" />
<input type="hidden" name="_subject" value="New submission!" />
<input type="text" name="_gotcha" style="display:none" />
<input type="submit" class="btn btn-primary mobile-block p2 right mb2" value="Send" style="max-width: 200px">
</form>
{% endif %}
</div>
{% if site.ajaxify_contact_form %}
{% include ajaxify_content_form.html %}
{% endif %}