Obvody/app/Presentation/Home/default.latte

24 lines
765 B
Plaintext

{* This is the welcome page, you can delete it *}
{block content}
<h3>Seznam obvodů</h3>
{* <div class="list-group" style="max-width: 200px">
<a n:href=":Obvody:" class="list-group-item list-group-item-action">Všechny obvody</a>
{foreach $obvody as $obvod}
<a n:href=":Obvody: obvod:$obvod" class="list-group-item list-group-item-action">{$obvod}</a>
{/foreach}
</div> *}
{* Tlačítka: *}
<div class="p-1 m-1 d-flex flex-wrap justify-content-center">
<a n:href=":Obvody:" type="button" class="btn btn-klavesa btn-letter btn-flex box-shadow--6dp">
*
</a>
{foreach $obvody as $obvod}
<a n:href=":Obvody: obvod:$obvod" type="button" class="btn btn-klavesa btn-letter btn-flex box-shadow--6dp">
{$obvod}
</a>
{/foreach}
</div>