Files
cnt-sindikatua/views/partials/btn-search.twig

18 lines
973 B
Twig
Raw Normal View History

2025-08-13 08:58:35 +00:00
<section class="section-search">
<button class="btn btn-light" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasTop" aria-controls="offcanvasTop">
<i class="bi bi-search"></i>
</button>
2025-07-17 09:34:11 +00:00
2025-08-13 08:58:35 +00:00
<div class="offcanvas offcanvas-top mt-3" tabindex="-1" id="offcanvasTop" aria-labelledby="offcanvasTopLabel" style="max-height: 18vh;">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasTopLabel">Búsqueda</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<form class="d-flex mt-3" role="search" method="get" action="/">
<input class="form-control me-2" type="search" name="s" placeholder="Buscar..." aria-label="Search"/>
<button class="btn btn-primary-cnt" type="submit">Buscar</button>
</form>
</div>
</div>
</section>