Add tag lines

This commit is contained in:
Théophile Bastian 2024-11-13 18:23:23 +01:00
parent 00914c37d0
commit a8d899d117
7 changed files with 23 additions and 2 deletions

View file

@ -139,3 +139,11 @@ dl {
unicode-bidi: bidi-override;
direction: rtl;
}
.tag_ligne {
display: inline;
width: 23px;
height: auto;
position: relative;
top: 5px;
}

View file

@ -103,3 +103,10 @@ dl {
.antispam {
unicode-bidi: bidi-override;
direction: rtl; }
.tag_ligne {
display: inline;
width: 23px;
height: auto;
position: relative;
top: 5px; }

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -1,4 +1,5 @@
{% extends "base.html" %}
{% load static %}
{% load lucide %}
{% block content %}
@ -36,8 +37,13 @@ Campus universitaire, Université Grenoble Alpes<br/>
</dd>
<dt>{% lucide "tram-front" %}</dt>
<dd>B/C Gabriel Fauré<br/>
C5/C8 Université Bibliothèques</dd>
<dd>
<img class="tag_ligne" src="{% static "img/tag/B.png" %}" alt="tram B" />
<img class="tag_ligne" src="{% static "img/tag/C.png" %}" alt="tram C" />
Gabriel Fauré<br/>
<img class="tag_ligne" src="{% static "img/tag/C5.png" %}" alt="bus C5" />
<img class="tag_ligne" src="{% static "img/tag/C8.png" %}" alt="bus C8" />
Université Bibliothèques</dd>
</dl>
{% endblock content %}