28 lines
1.1 KiB
Twig
28 lines
1.1 KiB
Twig
{% extends 'Game/index.html.twig' %}
|
|
|
|
{% block title %} - Contact{% endblock %}
|
|
|
|
{% block metas %}
|
|
{%- set _ogImage = app.request.getSchemeAndHttpHost() ~ asset('images/mine-1600x627.png') -%}
|
|
<meta property="og:url" content="{{ url('MineSeekerBundle_contact') }}"/>
|
|
<meta property="og:type" content="website"/>
|
|
<meta property="og:site_name" content="MineSeeker"/>
|
|
<meta property="og:title" content="Contact · MineSeeker"/>
|
|
<meta property="og:description" content="Get in touch with the MineSeeker team."/>
|
|
<meta property="og:image" content="{{ _ogImage }}"/>
|
|
<meta property="og:image:width" content="1600"/>
|
|
<meta property="og:image:height" content="627"/>
|
|
<meta name="twitter:card" content="summary_large_image"/>
|
|
<meta name="twitter:title" content="Contact · MineSeeker"/>
|
|
<meta name="twitter:description" content="Get in touch with the MineSeeker team."/>
|
|
<meta name="twitter:image" content="{{ _ogImage }}"/>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="txt">
|
|
<h2>Contact and user support</h2>
|
|
<h3>Under construction</h3>
|
|
<a href="mailto:langlasz@gmail.com">langlasz@gmail.com</a>
|
|
</div>
|
|
{% endblock %}
|