templates/spot/spot.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Princplaninc | Marinčev grič{% endblock %}
  3. {% block body %}
  4.     <h1>Princplaninc | Marinčev grič</h1>
  5.     <nav aria-label="breadcrumb">
  6.         <ol class="breadcrumb">
  7.             <li class="breadcrumb-item"><a href="{{ path('app_homepage') }}">Domov</a></li>
  8.             <li class="breadcrumb-item active" aria-current="page">Marinčev grič</li>
  9.         </ol>
  10.     </nav>
  11.     <hr>
  12.     <ul>
  13.     {% for item in data %}
  14.         <li class="{% if item.userCode == cookie %}text-primary{% else %}text-secondary{% endif %}">
  15.             {{ item.userName }} | Pristopov: {{ item.count }}
  16.         </li>
  17.     {% endfor %}
  18.     </ul>
  19. {% endblock %}