src/StartPlatz/Bundle/AlphaBundle/Resources/views/Startup/_display.feed.default.html.twig line 1

Open in your IDE?
  1. <section id="sectionFeed" class="ftco-section pt-5">
  2.     <!-- Page Content -->
  3.     <div class="container">
  4.         <!-- Unsichtbarer Anker für "Zurück zur Navigation" -->
  5.         <span id="topnavigation" class="d-block position-relative" style="top: -80px; visibility: hidden;"></span>
  6.         <!-- Schnellnavigation -->
  7.         <div id="schnellnavigation" class="quick-navigation mb-4">
  8.             <div class="row">
  9.                 <div class="col-12">
  10.                     <h4>{% if lang == 'DE' %}Schnellnavigation{% else %}Quick Navigation{% endif %}</h4>
  11.                     <div class="d-flex flex-wrap">
  12.                         {% if startupsSpCgn %}
  13.                             <a href="#koeln" class="btn btn-outline-primary m-1">{% if lang== 'DE' %}Köln{% else %}Cologne{% endif %}</a>
  14.                         {% endif %}
  15.                         {% if startupsSpDus %}
  16.                             <a href="#duesseldorf" class="btn btn-outline-primary m-1">Düsseldorf</a>
  17.                         {% endif %}
  18.                         {% if startupsRheinlandPitch %}
  19.                             <a href="#rheinlandpitch" class="btn btn-outline-primary m-1">Rheinland Pitch</a>
  20.                         {% endif %}
  21.                         {% if startupsCurrentBatch %}
  22.                             <a href="#batch{{ currentBatchNumber }}" class="btn btn-outline-primary m-1">Batch #{{ currentBatchNumber }}</a>
  23.                         {% endif %}
  24.                         {% if startupsLastBatch %}
  25.                             <a href="#batch{{ currentBatchNumber -1 }}" class="btn btn-outline-primary m-1">Batch #{{ currentBatchNumber -1 }}</a>
  26.                         {% endif %}
  27.                         {% if startupsBatch20 %}
  28.                             <a href="#batch{{ currentBatchNumber -2 }}" class="btn btn-outline-primary m-1">Batch #{{ currentBatchNumber -2 }}</a>
  29.                         {% endif %}
  30.                         {% if startupsGruenderstipendium is defined %}
  31.                             <a href="#gruenderstipendium" class="btn btn-outline-primary m-1">{% if lang== 'DE' %}Gründerstipendium{% else %}Founders' Scholarship{% endif %}</a>
  32.                         {% endif %}
  33.                         {% if startupsGruenderstipendiumAlumni is defined %}
  34.                             <a href="#gruenderstipendium-alumnis" class="btn btn-outline-primary m-1">{% if lang== 'DE' %}Gründerstipendium Alumni{% else %}Founders' Scholarship Alumni{% endif %}</a>
  35.                         {% endif %}
  36.                         {% if startupsAlumni %}
  37.                             <a href="#alumni" class="btn btn-outline-primary m-1">{% if lang== 'DE' %}Ehemalige Startups{% else %}Alumni Startups{% endif %}</a>
  38.                         {% endif %}
  39.                         {% if startupsExtern|length > 0 %}
  40.                             <a href="#oekosystem" class="btn btn-outline-primary m-1">{% if lang== 'DE' %}Ökosystem{% else %}Ecosystem{% endif %}</a>
  41.                         {% endif %}
  42.                     </div>
  43.                 </div>
  44.             </div>
  45.         </div>
  46.         <!-- Unsichtbares Padding für Anker-Links, um unter dem fixen Menü zu erscheinen -->
  47.         <style>
  48.             .section-anchor {
  49.                 display: block;
  50.                 position: relative;
  51.                 top: -120px; /* Höhe des Menüs + etwas Extra-Abstand */
  52.                 visibility: hidden;
  53.             }
  54.             .back-to-top {
  55.                 margin-bottom: 20px;
  56.                 display: inline-block;
  57.             }
  58.         </style>
  59.         {% if startupsSpCgn %}
  60.             <span class="section-anchor" id="koeln"></span>
  61.             <h2>{% if lang== 'DE' %}Unsere Startups im STARTPLATZ Köln{% else %}Our startups at STARTPLATZ Cologne{% endif %}</h2>
  62.             {% include '@StartPlatzAlphaBundle/Startup/_feed.startups.homepage.html.twig' with {'startups':startupsSpCgn} %}
  63.             <a href="#topnavigation" class="back-to-top btn btn-sm btn-outline-secondary">
  64.                 <i class="fas fa-arrow-up"></i> {% if lang== 'DE' %}Zurück zur Navigation{% else %}Back to navigation{% endif %}
  65.             </a>
  66.         {% endif %}
  67.         {% if startupsSpDus %}
  68.             <span class="section-anchor" id="duesseldorf"></span>
  69.             <h2>{% if lang== 'DE' %}Unsere Startups im STARTPLATZ Düsseldorf{% else %}Our startups at STARTPLATZ Dusseldorf{% endif %}</h2>
  70.             {% include '@StartPlatzAlphaBundle/Startup/_feed.startups.homepage.html.twig' with {'startups':startupsSpDus} %}
  71.             <a href="#topnavigation" class="back-to-top btn btn-sm btn-outline-secondary">
  72.                 <i class="fas fa-arrow-up"></i> {% if lang== 'DE' %}Zurück zur Navigation{% else %}Back to navigation{% endif %}
  73.             </a>
  74.         {% endif %}
  75.         {% if startupsRheinlandPitch %}
  76.             <span class="section-anchor" id="rheinlandpitch"></span>
  77.             <h2>{% if lang== 'DE' %}Die Teams beim aktuellen Rheinland Pitch{% else %}The teams at the current Rhineland pitch{% endif %}</h2>
  78.             {% include '@StartPlatzAlphaBundle/Startup/_feed.startups.homepage.html.twig' with {'startups':startupsRheinlandPitch} %}
  79.             <a href="#topnavigation" class="back-to-top btn btn-sm btn-outline-secondary">
  80.                 <i class="fas fa-arrow-up"></i> {% if lang== 'DE' %}Zurück zur Navigation{% else %}Back to navigation{% endif %}
  81.             </a>
  82.         {% endif %}
  83.         {% if startupsCurrentBatch %}
  84.             <span class="section-anchor" id="batch{{ currentBatchNumber }}"></span>
  85.             <h2 class="mt-3">{% if lang== 'DE' %}Batch #{{ currentBatchNumber }}{% else %}Batch #{{ currentBatchNumber }}{% endif %}</h2>
  86.             {% include '@StartPlatzAlphaBundle/Startup/_feed.startups.homepage.html.twig' with {'startups':startupsCurrentBatch} %}
  87.             <a href="#topnavigation" class="back-to-top btn btn-sm btn-outline-secondary">
  88.                 <i class="fas fa-arrow-up"></i> {% if lang== 'DE' %}Zurück zur Navigation{% else %}Back to navigation{% endif %}
  89.             </a>
  90.         {% endif %}
  91.         {% if startupsLastBatch %}
  92.             <span class="section-anchor" id="batch{{ currentBatchNumber -1 }}"></span>
  93.             <h2 class="mt-3">{% if lang== 'DE' %}Batch #{{ currentBatchNumber -1 }}{% else %}Batch #{{ currentBatchNumber -1 }}{% endif %}</h2>
  94.             {% include '@StartPlatzAlphaBundle/Startup/_feed.startups.homepage.html.twig' with {'startups':startupsLastBatch} %}
  95.             <a href="#topnavigation" class="back-to-top btn btn-sm btn-outline-secondary">
  96.                 <i class="fas fa-arrow-up"></i> {% if lang== 'DE' %}Zurück zur Navigation{% else %}Back to navigation{% endif %}
  97.             </a>
  98.         {% endif %}
  99.         {% if startupsBatch20 %}
  100.             <span class="section-anchor" id="batch{{ currentBatchNumber -2 }}"></span>
  101.             <h2 class="mt-3">{% if lang== 'DE' %}Batch #{{ currentBatchNumber -2 }}{% else %}Batch #{{ currentBatchNumber -2 }}{% endif %}</h2>
  102.             {% include '@StartPlatzAlphaBundle/Startup/_feed.startups.homepage.html.twig' with {'startups':startupsBatch20} %}
  103.             <a href="#topnavigation" class="back-to-top btn btn-sm btn-outline-secondary">
  104.                 <i class="fas fa-arrow-up"></i> {% if lang== 'DE' %}Zurück zur Navigation{% else %}Back to navigation{% endif %}
  105.             </a>
  106.         {% endif %}
  107.         {% if startupsGruenderstipendium is defined %}
  108.             <div class="mt-3"></div>
  109.             <span class="section-anchor" id="gruenderstipendium"></span>
  110.             <h2>{% if lang== 'DE' %}Die Teams im Gründungsstipendium{% else %}The teams in the Founders' Scholarship{% endif %}</h2>
  111.             {% include '@StartPlatzAlphaBundle/Startup/_feed.startups.homepage.html.twig' with {'startups':startupsGruenderstipendium} %}
  112.             <a href="#topnavigation" class="back-to-top btn btn-sm btn-outline-secondary">
  113.                 <i class="fas fa-arrow-up"></i> {% if lang== 'DE' %}Zurück zur Navigation{% else %}Back to navigation{% endif %}
  114.             </a>
  115.         {% endif %}
  116.         {% if startupsGruenderstipendiumAlumni is defined %}
  117.             <span class="section-anchor" id="gruenderstipendium-alumnis"></span>
  118.             <h2>{% if lang== 'DE' %}Gründungsstipendium Alumnis{% else %}Founders' Scholarship Alumni{% endif %}</h2>
  119.             {% include '@StartPlatzAlphaBundle/Startup/_feed.startups.homepage.html.twig' with {'startups':startupsGruenderstipendiumAlumni} %}
  120.             <a href="#topnavigation" class="back-to-top btn btn-sm btn-outline-secondary">
  121.                 <i class="fas fa-arrow-up"></i> {% if lang== 'DE' %}Zurück zur Navigation{% else %}Back to navigation{% endif %}
  122.             </a>
  123.         {% endif %}
  124.         {% if startupsAlumni %}
  125.             <span class="section-anchor" id="alumni"></span>
  126.             <h2>{% if lang== 'DE' %}Raus aus dem Brutkasten - einige unserer ehemaligen Startups{% else %}Out of the incubator - some of our former startups{% endif %}</h2>
  127.             {% include '@StartPlatzAlphaBundle/Startup/_feed.startups.homepage.html.twig' with {'startups':startupsAlumni} %}
  128.             <a href="#topnavigation" class="back-to-top btn btn-sm btn-outline-secondary">
  129.                 <i class="fas fa-arrow-up"></i> {% if lang== 'DE' %}Zurück zur Navigation{% else %}Back to navigation{% endif %}
  130.             </a>
  131.         {% endif %}
  132.         {% if startupsExtern|length > 0 %}
  133.             <span class="section-anchor" id="oekosystem"></span>
  134.             <h2>{% if lang== 'DE' %}Startups im STARTPLATZ Ökosystem{% else %}Startups in the STARTPLATZ ecosystem{% endif %}</h2>
  135.             {% include '@StartPlatzAlphaBundle/Startup/_feed.startups.homepage.html.twig' with {'startups':startupsExtern} %}
  136.             <a href="#topnavigation" class="back-to-top btn btn-sm btn-outline-secondary">
  137.                 <i class="fas fa-arrow-up"></i> {% if lang== 'DE' %}Zurück zur Navigation{% else %}Back to navigation{% endif %}
  138.             </a>
  139.         {% endif %}
  140.     </div>
  141. </section>