diff options
author | 2022-08-13 22:53:50 +0200 | |
---|---|---|
committer | 2022-08-13 22:53:50 +0200 | |
commit | f2ad3eed8ef8872713666f69ec783f59006d3d81 (patch) | |
tree | 77ce127c183b566a915a9e176ee2a748aa2f0a5d /pydis_site/templates | |
parent | Enable Code Highlighting On All Content Pages (diff) |
Improve Tag Cropping
Move the tag cropping logic to the frontend, which makes it easier to
crop without crossing boundaries such as link or code block boundaries.
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'pydis_site/templates')
-rw-r--r-- | pydis_site/templates/content/listing.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pydis_site/templates/content/listing.html b/pydis_site/templates/content/listing.html index eeb6b5e2..098f4237 100644 --- a/pydis_site/templates/content/listing.html +++ b/pydis_site/templates/content/listing.html @@ -1,5 +1,6 @@ {# Base navigation screen for resources #} {% extends 'content/base.html' %} +{% load static %} {% block page_content %} {# Nested Categories #} @@ -26,10 +27,11 @@ <span class="is-size-4 has-text-weight-bold">{{ data.title }}</span> </a> {% if "tags" in location %} - <p class="is-italic">{{ data.description | safe }}</p> + <div class="tag-container">{{ data.description | safe }}</div> {% else %} <p class="is-italic">{{ data.description }}</p> {% endif %} </div> {% endfor %} + <script src="{% static 'js/content/listing.js' %}"></script> {% endblock %} |