2014-08-17 23:28:05 +02:00
|
|
|
{include="layout"}
|
2014-08-17 23:45:40 +02:00
|
|
|
{include="navbar"}
|
|
|
|
<div class="container">
|
2014-08-18 15:07:41 +02:00
|
|
|
{if="$message"}
|
|
|
|
<div class="alert alert-info">{$message}</div>
|
|
|
|
{/if}
|
2014-08-18 15:24:54 +02:00
|
|
|
<h1 class="text-center">{$site_name}!</h1>
|
2014-08-18 15:55:54 +02:00
|
|
|
<form method="POST">
|
2015-08-13 17:23:12 +02:00
|
|
|
<p class="text-center">Wer bist du? <input name="author" type="text" class="input-xs" placeholder="Ein Äffchen"></p>
|
2014-08-18 15:55:54 +02:00
|
|
|
<div class="row">
|
2014-08-18 18:11:52 +02:00
|
|
|
<div class="col-sm-4 rowm">
|
2015-08-13 17:23:12 +02:00
|
|
|
<input name="word1" type="text" class="form-control" placeholder="Erstes Wort">
|
2014-08-18 15:55:54 +02:00
|
|
|
</div>
|
2014-08-18 18:11:52 +02:00
|
|
|
<div class="col-sm-4 rowm">
|
2015-08-13 17:23:12 +02:00
|
|
|
<input name="word2" type="text" class="form-control" placeholder="Zweites Wort">
|
2014-08-18 15:55:54 +02:00
|
|
|
</div>
|
2014-08-18 18:11:52 +02:00
|
|
|
<div class="col-sm-4 rowm">
|
2015-08-13 17:23:12 +02:00
|
|
|
<input name="word3" type="text" class="form-control" placeholder="Drittes Wort">
|
2014-08-18 15:55:54 +02:00
|
|
|
</div>
|
2014-08-18 00:00:05 +02:00
|
|
|
</div>
|
2014-08-18 15:55:54 +02:00
|
|
|
<div class="row">
|
2014-08-18 18:11:52 +02:00
|
|
|
<div class="col-sm-4 col-sm-offset-4">
|
2015-08-13 17:23:12 +02:00
|
|
|
<button type="submit" class="btn btn-primary btn-block btn-lg">Absenden</button>
|
2014-08-18 15:55:54 +02:00
|
|
|
</div>
|
2014-08-18 00:00:05 +02:00
|
|
|
</div>
|
2014-08-18 15:55:54 +02:00
|
|
|
<input type="hidden" name="words">
|
|
|
|
</form>
|
2014-08-18 16:56:02 +02:00
|
|
|
{if="$recent_public"}
|
2014-08-18 16:51:07 +02:00
|
|
|
<div class="row recent-margin">
|
2014-08-18 16:58:18 +02:00
|
|
|
<div class="col-md-offset-2 col-md-8">
|
2015-08-13 17:23:12 +02:00
|
|
|
<h4>Was andere denken:</h4>
|
2014-08-18 16:49:31 +02:00
|
|
|
<table class="table table-responsive table-bordered table-condensed">
|
|
|
|
<tbody>
|
2014-08-18 16:56:02 +02:00
|
|
|
{loop="$words"}
|
2014-08-18 16:49:31 +02:00
|
|
|
<tr>
|
2015-08-13 17:23:12 +02:00
|
|
|
<td><b>{$value.author}</b> schrieb, dass {$user_name} <span class="label label-default">{$value.word1}</span>, <span class="label label-default">{$value.word2}</span> und <span class="label label-default">{$value.word3}</span> ist.</td>
|
2014-08-18 16:49:31 +02:00
|
|
|
</tr>
|
|
|
|
{/loop}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-08-18 16:33:43 +02:00
|
|
|
{/if}
|
2014-08-17 23:45:40 +02:00
|
|
|
</div>
|
2014-08-17 23:28:05 +02:00
|
|
|
{include="footer"}
|