File tree Expand file tree Collapse file tree 2 files changed +18
-13
lines changed
src/server/templates/components Expand file tree Collapse file tree 2 files changed +18
-13
lines changed Original file line number Diff line number Diff line change 1
1
{% from 'components/_macros.jinja' import footer_icon_link %}
2
2
<footer class =" w-full border-t-[3px] border-gray-900 mt-auto" >
3
3
<div class =" max-w-4xl mx-auto px-4 py-4" >
4
- <div class =" grid grid-cols-2 items-center text-gray-900 text-sm" >
4
+ <div class =" grid grid-cols-3 items-center text-gray-900 text-sm" >
5
5
{# Left column — Chrome + PyPI #}
6
6
<div class =" flex items-center space-x-4" >
7
7
{{ footer_icon_link('https://chromewebstore.google.com/detail/adfjahbijlkjfoicpjkhjicpjpjfaood',
11
11
'icons/python.svg',
12
12
'Python Package') }}
13
13
</div >
14
+ {# Middle column - Version information #}
15
+ <div class =" flex justify-center" >
16
+ <span >Version:  ; </span >
17
+ {% if version != "unknown" %}
18
+ <a href =" {{ version_link }}"
19
+ target =" _blank"
20
+ rel =" noopener noreferrer"
21
+ class =" text-blue-600 hover:text-blue-800 underline" >{{ version }}</a >
22
+ {% else %}
23
+ <span >{{ version }}</span >
24
+ {% endif %}
25
+ </div >
14
26
{# Right column - Discord #}
15
27
<div class =" flex justify-end" >
16
28
{{ footer_icon_link('https://discord.gg/zerRaGK9EC',
Original file line number Diff line number Diff line change 3
3
<div class =" flex justify-between items-center h-16" >
4
4
{# Logo #}
5
5
<div class =" flex items-center gap-4" >
6
- <div class =" flex flex-col" >
7
- <h1 class =" text-3xl font-bold tracking-tight mb-0 leading-none" >
8
- <a href =" /" class =" hover:opacity-80 transition-opacity" >
9
- <span class =" text-gray-900" >Git</span ><span class =" text-[#FE4A60]" >ingest</span >
10
- </a >
11
- </h1 >
12
- <a href =" {{ version_link }}"
13
- target =" _blank"
14
- rel =" noopener noreferrer"
15
- class =" relative self-end text-sm text-blue-600 hover:text-blue-800 no-underline ml-4 -mt-1" >
16
- {{ version }}
6
+ <h1 class =" text-2xl font-bold tracking-tight" >
7
+ <a href =" /" class =" hover:opacity-80 transition-opacity" >
8
+ <span class =" text-gray-900" >Git</span ><span class =" text-[#FE4A60]" >ingest</span >
17
9
</a >
18
- </div >
10
+ </h1 >
19
11
</div >
20
12
{# Navigation with updated styling #}
21
13
<nav class =" flex items-center space-x-6" >
44
36
</div >
45
37
</div >
46
38
</header >
39
+ {# Load GitHub stars script #}
47
40
<script defer src =" /static/js/navbar.js" ></script >
You can’t perform that action at this time.
0 commit comments