workshop-tailwind-css/templates/includes/navbar.html.twig

20 lines
1 KiB
Twig
Raw Normal View History

2021-02-17 21:59:07 +00:00
<div class="sticky top-0 z-30 px-4 mx-auto bg-white max-w-screen-2xl">
<div class="grid grid-cols-2 gap-4">
2021-02-17 21:37:16 +00:00
<div>
2021-02-17 21:59:07 +00:00
<a class="absolute" href="#0">
2021-02-17 21:37:16 +00:00
<img src="https://www.fldrupal.camp/sites/all/themes/fldc17/images/header-logo-general.svg">
</a>
</div>
<div>
2021-02-17 21:59:07 +00:00
<ul class="flex justify-end h-full">
<li><a class="block px-2 py-4 text-lg font-bold text-blue-700 uppercase" href="#0">Conference</a></li>
<li><a class="block px-2 py-4 text-lg font-bold text-blue-700 uppercase" href="#0">Sponsors</a></li>
<li><a class="block px-2 py-4 text-lg font-bold text-blue-700 uppercase" href="#0">Community</a></li>
<li><a class="block px-2 py-4 text-lg font-bold text-blue-700 uppercase" href="#0">FAQ</a></li>
<li><a class="block px-2 py-4 text-lg font-bold text-white uppercase bg-blue-500" href="#0">Register</a>
</li>
2021-02-17 21:37:16 +00:00
</ul>
</div>
</div>
</div>