diff options
author | sptaule <lecas83@gmail.com> | 2022-02-01 17:17:01 +0100 |
---|---|---|
committer | sptaule <lecas83@gmail.com> | 2022-02-01 17:17:01 +0100 |
commit | c2acea04d721d97d8b093f61905d136769a5a7de (patch) | |
tree | 9d1c64c0f14694c2b93723ad1f495080feb7ac94 /templates/partials/shared | |
parent | 54ff639713a824474d685193b393c75c4ed8cec6 (diff) | |
download | garagehq.deuxfleurs.fr-c2acea04d721d97d8b093f61905d136769a5a7de.tar.gz garagehq.deuxfleurs.fr-c2acea04d721d97d8b093f61905d136769a5a7de.zip |
Fix: Our Goals content, pagination, download link | Add: Link to doc sections on home imgs
Diffstat (limited to 'templates/partials/shared')
-rw-r--r-- | templates/partials/shared/nav.html | 2 | ||||
-rw-r--r-- | templates/partials/shared/paginator.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/partials/shared/nav.html b/templates/partials/shared/nav.html index a8ce2ce..6231f19 100644 --- a/templates/partials/shared/nav.html +++ b/templates/partials/shared/nav.html @@ -33,7 +33,7 @@ </svg> </a> <a - href="https://garagehq.deuxfleurs.fr/_releases.html" + href="{{ config.base_url }}/download/" title="Garage releases" class="group flex items-center justify-center space-x-1 font-semibold shadow hover:shadow px-2 py-1.5 rounded text-white transition-all duration-500 bg-gradient-to-tl from-garage-orange via-orange-500 to-orange-300 bg-size-200 bg-pos-0 hover:bg-pos-100"> <svg class="w-6 h-6 animate-pulse" 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="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M9 19l3 3m0 0l3-3m-3 3V10"></path></svg> diff --git a/templates/partials/shared/paginator.html b/templates/partials/shared/paginator.html index 470d411..e176614 100644 --- a/templates/partials/shared/paginator.html +++ b/templates/partials/shared/paginator.html @@ -17,7 +17,7 @@ {% for pager in range(start=1, end=paginator.number_pagers+1) %} <li> <a class="font-semibold inline-flex items-center justify-center h-7 w-7 rounded hover:shadow hover:bg-garage-orange bg-garage-gray bg-opacity-20 border-b-2 {% if paginator.current_index == pager %}border-garage-orange{% else %}border-transparent{% endif %}" - href='{{ paginator.base_url }}{{pager}}' aria-label="Goto page {{pager}}"> + href='{{ paginator.base_url }}{{pager}}/' aria-label="Goto page {{pager}}"> {{pager}} </a> </li> |