Kumi
232a1504fb
- Add 'privacy.txt' to .gitignore to prevent checking it in - Refactor data storage from arrays to dictionaries for better data handling in 'main.py' - Include 'pathlib' import for handling filesystem paths - Introduce new CSS and Bootstrap files providing updated styles and responsive design elements - Modify HTML templates to use updated data structures and enhance accessibility These changes improve code readability, maintain project consistency, and enhance the front-end presentation. This work is part of ongoing efforts to better manage project data, secure sensitive information, and provide a more robust user interface.
23 lines
No EOL
705 B
HTML
23 lines
No EOL
705 B
HTML
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<center>
|
|
<img src="{{ img }}" alt="{{ title }}" style="max-width:98vw;">
|
|
<p>{{ entry_count }} Entries, {{ prizes }} Prizes</p>
|
|
<br>
|
|
{{ info|safe }}
|
|
<div class="ible-list">
|
|
{% for ible in entries %}
|
|
<div class="ible-list-item">
|
|
<a href="{{ ible.link }}" style="color:#bbc2cf;">
|
|
<img style="max-width:350px;" src="{{ ible.entry_img }}" alt="{{ ible.entry_title }}">
|
|
<p>{{ ible.entry_title }}</p>
|
|
</a>
|
|
<p>by <a href="{{ ible.author_link }}">{{ ible.author }}</a> in <a href="{{ ible.channel_link }}">{{ ible.channel }}</a></p>
|
|
<p>{{ ible.views }} Views</p>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</center>
|
|
{% endblock %} |