templates/layouts/partials/header.html.twig line 1

Open in your IDE?
  1. <nav id="main-nav" class="navbar navbar-expand-lg navbar-dark bg-transparent">
  2.     <div class="container">
  3.         <a href="/" class="logo">
  4.             <img  src="{{ asset('assets/img/top-logo.webp') }}" alt="workoutapp" class="main-logo " />
  5.         </a>
  6.         <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
  7.             <span class="navbar-toggler-icon"></span>
  8.         </button>
  9.         <div class="collapse navbar-collapse " id="navbarNavAltMarkup">
  10.             <div class="navbar-nav ms-auto">
  11.                 <a class="nav-link active" aria-current="page" href="{{ asset('assets/docs/WorkoutApp-Litepaper-2024-2.pdf') }}"  target="_blank">litepaper </a>
  12.                 <a class="nav-link" href="{{ path('app_demo') }}">App Demo</a>
  13.                 <a class="nav-link" href="{{ path('economy') }}">Economy</a>
  14.                 <a class="nav-link soon2" href="#" disabled>VESTING</a>
  15.                 <a class="nav-link" href="{{ asset('assets/docs/WorkoutApp-Whitepaper-2024-2.pdf') }}" target="_blank">WHITEPAPER</a>
  16.                 <a class="nav-link nav-icon" href="#"><img  src="assets/img/top-icon.webp" alt="workoutapp" class=" " /></a>
  17.                 {% if backUrl is defined and backUrl != '' %}
  18.                     <a href="{{ backUrl }}" class="go-back" style="" title="Go back">
  19.                         <svg width="53" height="50" viewBox="0 0 73 70" fill="none" xmlns="http://www.w3.org/2000/svg">
  20.                         <g filter="url(#filter0_d_1321_3752)">
  21.                         <g filter="url(#filter1_d_1321_3752)">
  22.                         <line x1="9.70475" y1="57.7574" x2="62.7048" y2="4.75736" stroke="white" stroke-width="12"/>
  23.                         </g>
  24.                         <g filter="url(#filter2_d_1321_3752)">
  25.                         <line x1="9.82162" y1="4.75736" x2="62.8216" y2="57.7574" stroke="white" stroke-width="12"/>
  26.                         </g>
  27.                         </g>
  28.                         <defs>
  29.                         <filter id="filter0_d_1321_3752" x="1.46216" y="0.515625" width="69.6021" height="69.4844" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
  30.                             <feFlood flood-opacity="0" result="BackgroundImageFix"/>
  31.                             <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
  32.                             <feOffset dy="4"/>
  33.                             <feGaussianBlur stdDeviation="2"/>
  34.                             <feComposite in2="hardAlpha" operator="out"/>
  35.                             <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
  36.                             <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1321_3752"/>
  37.                             <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1321_3752" result="shape"/>
  38.                         </filter>
  39.                         <filter id="filter1_d_1321_3752" x="3.46216" y="0.515625" width="63.4852" height="63.4844" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
  40.                             <feFlood flood-opacity="0" result="BackgroundImageFix"/>
  41.                             <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
  42.                             <feOffset dx="-1" dy="1"/>
  43.                             <feGaussianBlur stdDeviation="0.5"/>
  44.                             <feComposite in2="hardAlpha" operator="out"/>
  45.                             <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0"/>
  46.                             <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1321_3752"/>
  47.                             <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1321_3752" result="shape"/>
  48.                         </filter>
  49.                         <filter id="filter2_d_1321_3752" x="3.57898" y="0.515625" width="63.4852" height="63.4844" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
  50.                             <feFlood flood-opacity="0" result="BackgroundImageFix"/>
  51.                             <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
  52.                             <feOffset dx="-1" dy="1"/>
  53.                             <feGaussianBlur stdDeviation="0.5"/>
  54.                             <feComposite in2="hardAlpha" operator="out"/>
  55.                             <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0"/>
  56.                             <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1321_3752"/>
  57.                             <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1321_3752" result="shape"/>
  58.                         </filter>
  59.                         </defs>
  60.                         </svg>
  61.                     </a>
  62.                 {% endif %}
  63.             </div>
  64.         </div>
  65.     </div>
  66. </nav>
  67. {#
  68. <div>
  69.     {% if not app.user %}
  70.     <a href="{{ path('user_login') }}">{{ 'Zaloguj się'|trans }}</a> |
  71.     <a href="{{ path('user_register') }}">{{ 'Zarejestruj się'|trans }}</a>
  72.     {% else %}
  73.     <a href="{{ path('user_logout') }}">{{ 'Wyloguj'|trans }}</a> |
  74.     <a href="{{ path('user_profile') }}">{{ 'Profil'|trans }}</a>
  75.     {% endif %}
  76. </div>
  77. #}