Skip to content

Commit

Permalink
Gitignore fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmishra committed Jul 3, 2021
1 parent 4106b88 commit ae23ef8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/__pycache__/
*/__pycache__/*
/.vscode/
6 changes: 3 additions & 3 deletions main/templates/posts.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{% if i.thumbnail %}
<a href="{{ url_for('post_detail', primary_key=i.id) }}" class="col-auto" style="text-decoration: none; color: white;">
<div class="col-auto">
<div class="card cards" style="box-shadow: 1px 1px 30px black; border: none; width: 612px; height: 18rem;">
<div class="card cards" style="box-shadow: 1px 1px 30px black; border: none; width: 612px;">
<div class="card-body" style="margin: 0; padding: 0;">
<img src="{{ url_for('static', filename='profile_pics/' ~ i.author.profile_picture) }}" alt="DP" width="32"
height="32">&ensp;{{ i.author.username }}
Expand All @@ -30,7 +30,7 @@
<br>

<span class="text-muted" style="margin-bottom: 10px;">Posted On: {{ i.date_posted.date() }}</span>
<img src="{{ i.thumbnail }}" alt="Image Support" style="border-radius: 25px;">
<img src="{{ i.thumbnail }}" alt="Image Support" style="border-radius: 25px; height: 18rem;">

<br>

Expand All @@ -43,7 +43,7 @@ <h5 class="card-title" style="font-weight: 600;">
{% else %}
<a href="{{ url_for('post_detail', primary_key=i.id) }}" class="col-auto" style="text-decoration: none; color: white;">
<div class="col-auto">
<div class="card cards" style="box-shadow: 1px 1px 30px black; border: none; width: 612px; height: 18rem;">
<div class="card cards" style="box-shadow: 1px 1px 30px black; border: none; width: 612px;">
<div class="card-body" style="margin: 0; padding: 0;">
<img src="{{ url_for('static', filename='profile_pics/' ~ i.author.profile_picture) }}" alt="DP"
width="32" height="32">&ensp;{{ i.author.username }}
Expand Down

0 comments on commit ae23ef8

Please sign in to comment.