templates/frontend/public/ideas/ideas_guidelines.html.twig line 1

Open in your IDE?
  1. {% extends "@frontend/base_layout.html.twig" %}
  2. {% block content %}    
  3.     <div class="container">
  4.         <div class="col-md-12">
  5.             <h1>{{ heading }}</h1>
  6.         </div>
  7.         <div class="col-md-12">
  8.             <p>
  9.                 Sie möchten als Anbieter mit einem Profil auf berufsreise.at vertreten sein oder als Lehrperson unsere Plattform nutzen? 
  10.                 Um Ihnen für die eine oder andere Frage bereits mit der passenden Antwort bereit zu stehen, haben wir für Sie Leitfäden 
  11.                 zur Bearbeitung und Nutzung von berufsreise.at zusammengestellt. Zusätzlich gibt es die wichtigsten Punkte auch in einem 
  12.                 Informationsvideo zu sehen.   
  13.             </p>
  14.         </div>
  15.         <div class="col-md-12">
  16.             {% for entity in entities %}
  17.                 {% if entity.link is not empty %}
  18.                     {% set path=entity.link %}
  19.                 {% else %}
  20.                     {% set path=path(categoryRoute, {'category':entity.urlText}) %}
  21.                 {% endif %}
  22.                 {% set imgUrl = media_public_url(entity.categoryPicture, 'reference') %}
  23.                 {% include '@frontend/templates/black_box_template.html.twig' with {
  24.                     'target': entity.targetText,
  25.                     'path': path, 
  26.                     'bootstrapClass':'col-xs-6 col-md-4', 
  27.                     'colorClass': entity.headingColor, 
  28.                     'title': entity.heading, 
  29.                     'subtitle': entity.description, 
  30.                     'src': imgUrl } %}
  31.             {% endfor %}
  32.         </div>
  33.         {% if entities|length < 1 %}
  34.             <div class="col-md-12" style="min-height: 370px;">
  35.                 <p style="margin-top: 40px;">Aktuell sind noch keine Einträge vorhanden</p>
  36.             </div>                 
  37.         {% endif %}
  38.     </div>
  39.     <div class="footer-spacer"></div>
  40. {% endblock %}