reduce size of icons in blog main feed

This commit is contained in:
cube
2026-03-19 02:31:54 +00:00
parent 4b46685eaa
commit 8f11e5fb6b
3 changed files with 17 additions and 2 deletions

View File

@@ -2,6 +2,17 @@
flask app for plurals to publicly share member lists flask app for plurals to publicly share member lists
# todo (minor)
- add delete button to blog posts on main feed
- show blog posts in edit member section with a delete button
# todo (major)
- add blinkies and stamps sections to member pages
- (require above) add blinkies and stamps upload sections to edit member page
- (require above) add blinkies and stamps link/db cleanup to manage site assets
# dev set up (windows) # dev set up (windows)
- after cloning, run `py -3 -m venv .venv` in the root directory and then `.venv\Scripts\activate` - after cloning, run `py -3 -m venv .venv` in the root directory and then `.venv\Scripts\activate`

View File

@@ -176,6 +176,10 @@ form textarea{
border-style:solid; border-style:solid;
margin:20px; margin:20px;
} }
.post .icon{
width:60px;
height:60px;
}
.imgbullet{ .imgbullet{
margin-right:10px; margin-right:10px;

View File

@@ -14,10 +14,10 @@
{% else %} {% else %}
<img src="{{ url_for('static', filename='any.jpg') }}" class="icon"> <img src="{{ url_for('static', filename='any.jpg') }}" class="icon">
{% endif %} {% endif %}
<div class="title">{{post[3]}}</div> <div class="title">{{post[3]|safe}}</div>
<div class="timestamp">{{post[2]}} - <a href="{{ url_for('home.page', mid=post[1]) }}">{{op[3]}}</a></div> <div class="timestamp">{{post[2]}} - <a href="{{ url_for('home.page', mid=post[1]) }}">{{op[3]}}</a></div>
<div class="content"> <div class="content">
{{post[4]}} {{post[4]|safe}}
</div> </div>
<br class="clear" /> <br class="clear" />
</div> </div>