diff options
author | blendoit <blendoit@gmail.com> | 2020-01-29 09:31:06 -0800 |
---|---|---|
committer | blendoit <blendoit@gmail.com> | 2020-01-29 09:31:06 -0800 |
commit | 26e4680dd6fd824e453435d246bc90bda06ed60e (patch) | |
tree | b29b4904bc0c4d2b0c392727e1d2af451960d9e5 /app/templates | |
parent | 812a6d4890507803d294a4b87c56372ce33c64b0 (diff) |
Change vertical to horizontal animation for consistency.
Diffstat (limited to 'app/templates')
-rw-r--r-- | app/templates/home.html | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/templates/home.html b/app/templates/home.html index 5990c14..28bde41 100644 --- a/app/templates/home.html +++ b/app/templates/home.html @@ -12,15 +12,13 @@ <div class="feed-post"> {% for post in posts %} <div class="post-wrapper"> + <a href="{{ url_for('home') }}" class="btn-yes"></a> + <a href="{{ url_for('home') }}" class="btn-no"></a> <div class="post"> <h1>{{post.author}}</h1> <h2>{{post.date}}</h2> <p>{{post.content}}</p> </div> - <div class="btn-wrapper"> - <a href="{{ url_for('home') }}" class="btn-yes"></a> - <a href="{{ url_for('home') }}" class="btn-no"></a> - </div> </div> {% endfor %} |