reduce size of icons in blog main feed
This commit is contained in:
11
README.md
11
README.md
@@ -2,6 +2,17 @@
|
||||
|
||||
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)
|
||||
|
||||
- after cloning, run `py -3 -m venv .venv` in the root directory and then `.venv\Scripts\activate`
|
||||
|
||||
@@ -176,6 +176,10 @@ form textarea{
|
||||
border-style:solid;
|
||||
margin:20px;
|
||||
}
|
||||
.post .icon{
|
||||
width:60px;
|
||||
height:60px;
|
||||
}
|
||||
|
||||
.imgbullet{
|
||||
margin-right:10px;
|
||||
|
||||
@@ -14,10 +14,10 @@
|
||||
{% else %}
|
||||
<img src="{{ url_for('static', filename='any.jpg') }}" class="icon">
|
||||
{% 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="content">
|
||||
{{post[4]}}
|
||||
{{post[4]|safe}}
|
||||
</div>
|
||||
<br class="clear" />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user