Skip to content

Commit

Permalink
english game view template added
Browse files Browse the repository at this point in the history
  • Loading branch information
nekocari committed Oct 6, 2024
1 parent 2f91a88 commit f150aed
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions app/views/en/game/_template_own_game.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!-- display name as set in "Administration > Games" -->
<h1><?php echo $game->getName('en'); // 'en' for english name (see "config/constants.php" constant SUPPORTED_LANGUAGES) ?></h1>
<!---------------------------------------------------------------------------------->
<h2>lass uns spielen!</h2>

<!-- display description as set in "Administration > Games" -->
<p class="text-center"><?php echo $game->getDescription('en'); // 'en' for english text ?></p>
<!---------------------------------------------------------------------------------->


<!-- v add necessary HTML code for game v -->







<!-- leave in "form" tag if your following the Wiki! ------------------------------->
<form id="my-custom-game" class="text-center" method="POST">
<input id="result-input" type="hidden" name="game_result" value="">
</form>
<!---------------------------------------------------------------------------------->

<p class="text-center">
<a class="btn btn-dark" href="javascript:history.go(-1)">zurück zur Übersicht</a>
</p>

0 comments on commit f150aed

Please sign in to comment.