diff options
Diffstat (limited to 'templates/base.html')
-rwxr-xr-x | templates/base.html | 28 |
1 files changed, 3 insertions, 25 deletions
diff --git a/templates/base.html b/templates/base.html index 8170b44..d947c50 100755 --- a/templates/base.html +++ b/templates/base.html @@ -13,36 +13,14 @@ {% include "partials/shared/nav.html" %} - <div> - {% block content %}{% endblock %} - </div> + {% block content %}{% endblock %} {% block search %} - <section id="search-modal" class="modal hidden bg-gray-50 w-5/6 md:w-4/5 lg:w-3/4 xl:w-2/3 2xl:w-1/2 absolute top-20 left-1/2 transform -translate-x-1/2 shadow-xl rounded-lg"> - <div class="p-2 md:p-4 xl:p-8"> - <section class="relative flex flex-col items-center justify-center"> - <div class="field mt-8 md:mt-0 mb-2"> - <div class="control"> - <input - id="search" - class="p-2 md:p-4 shadow rounded-lg outline-2 focus:outline outline-garage-orange" - placeholder="Search on Garage..." type="search" /> - </div> - </div> - <div class="search-results hidden mt-8 p-2 md:p-4 w-full bg-white rounded shadow"> - <div class="search-results__items max-h-96 overflow-y-scroll p-2 md:p-4"></div> - </div> - </section> - <button aria-label="close" id="close-modal-btn" class="absolute top-2 right-2 flex items-center group rounded-full shadow-inner bg-gray-300 border border-transparent hover:border-gray-500 bg-opacity-50 p-2"> - <svg id="close-modal-btn-icon" class="w-6 h-6 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path></svg> - <small class="text-xs text-gray-400">(Esc)</small> - </button> - </div> - </section> + {% include "partials/shared/search.html" %} {% endblock %} {% block pagination %} - {% include "partials/shared/paginator.html" %} + {% include "partials/shared/paginator.html" %} {% endblock %} {% block comment %}{% endblock %} |