33 lines
1000 B
HTML
33 lines
1000 B
HTML
{% from "lib/section.html" import section %}
|
|
|
|
{% call section(
|
|
gettext("Contact"),
|
|
"contact",
|
|
"/img/section-collective.png",
|
|
title_picture_hover = "/img/section-collective-hover.png",
|
|
title_picture_active = "/img/section-collective-active.png",
|
|
title_picture_offset = "50px"
|
|
) %}
|
|
<div class="contact--content">
|
|
<p>
|
|
{% trans %}
|
|
If you want to contact us about our games, for business inquiries, press or anything else please click on the button below.
|
|
{% endtrans %}
|
|
</p>
|
|
<div class="contact--button-group">
|
|
<a class="contact--button" href="mailto:contact@frog-collective.com">
|
|
<img class="contact--button-icon" src="/img/mail-fill.svg"></img>
|
|
{% trans %}
|
|
Contact Us
|
|
{% endtrans %}
|
|
</a>
|
|
<a class="contact--button" href="presskits/coldridge.html">
|
|
<img class="contact--button-icon" src="/img/information-fill.svg"></img>
|
|
{% trans %}
|
|
ColdRidge Press Kit
|
|
{% endtrans %}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endcall %}
|