mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
- Added the ability to display book cover for the category "Lectures" if ISBN cover is available. - Moved author's name into a small tag for better hierarchy and readability. - Implemented a feature to indicate link sizes depending on the number of articles associated with a given tag. - Implemented a mini footer element displaying an RSS feed icon. - Improved category display using description dictionary. - Added a new plugin "isbn_downloader" to fetch ISBN information when needed. - Included the count of articles for each category. - Implemented changes for better layout and readability of tags and categories. - Adjusted the layout of the webpage, improving the overall look of the page. - Included "requests" in the requirements.txt for supplanting dependencies required by the new plugin and/or features.
14 lines
414 B
HTML
14 lines
414 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
<dl id="categories">
|
|
{% for category, articles in categories %}
|
|
{% if category in CATEGORIES_DESCRIPTION.keys() %}
|
|
<dt><h2><a href="/{{category.slug}}/">{{ CATEGORIES_DESCRIPTION[category][0] }}</a></h2></dt>
|
|
<dd>{{ CATEGORIES_DESCRIPTION[category][1] }}. {{ articles | length }} articles.</dd>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</dl>
|
|
|
|
|
|
{% endblock %}
|