45 lines
1.5 KiB
Twig
45 lines
1.5 KiB
Twig
|
|
{% extends 'base.html.twig' %}
|
||
|
|
|
||
|
|
{% block title %} - Play!{% endblock %}
|
||
|
|
|
||
|
|
{% block body %}
|
||
|
|
<a class="back-from-game" href="{{ path('MineSeekerBundle_homepage') }}">
|
||
|
|
<img src="{{ asset('/images/mine-logo-txt.png') }}" alt="Mineseeker Logo">
|
||
|
|
</a>
|
||
|
|
<div class="mine-container">
|
||
|
|
<div id="mine-wrapper"
|
||
|
|
data-env="{{ env }}"
|
||
|
|
data-ssl="{{ ssl }}"
|
||
|
|
data-game-id="{{ app.request.get('gameAssoc') }}">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block metas %}
|
||
|
|
<meta property="og:url" content="{{ url('MineSeekerBundle_gamePlay') }}"/>
|
||
|
|
<meta property="og:type" content="website"/>
|
||
|
|
<meta property="og:title" content="Your friend challenges YOU!"/>
|
||
|
|
<meta property="og:description" content="Do you accept the challenge?"/>
|
||
|
|
<meta property="og:image"
|
||
|
|
content="{{ app.request.getSchemeAndHttpHost() }}{{ asset('/images/mine-1600x627.png') }}"/>
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block stylesheets %}
|
||
|
|
{{ encore_entry_link_tags('mineseekerStyle') }}
|
||
|
|
|
||
|
|
<style type="text/css">
|
||
|
|
.mine-container {
|
||
|
|
background: url('/images/bg-mineseeker-{{ random(1) }}-outbg.jpg') no-repeat;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block javascripts %}
|
||
|
|
{{ parent() }}
|
||
|
|
|
||
|
|
<script type="text/javascript" src="{{ asset('bundles/goswebsocket/js/vendor/autobahn.min.js') }}"></script>
|
||
|
|
<script type="text/javascript" src="{{ asset('bundles/goswebsocket/js/gos_web_socket_client.js') }}"></script>
|
||
|
|
|
||
|
|
{{ encore_entry_script_tags('mineseeker') }}
|
||
|
|
{% endblock %}
|