-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |