diff options
Diffstat (limited to 'app/templates/home.html')
| -rw-r--r-- | app/templates/home.html | 14 | 
1 files changed, 8 insertions, 6 deletions
| diff --git a/app/templates/home.html b/app/templates/home.html index 6205c03..9d77add 100644 --- a/app/templates/home.html +++ b/app/templates/home.html @@ -9,13 +9,15 @@      <a href="{{ url_for('no') }}" class="tab-no"></a>      <div class="main"> -        {% for post in posts %} -        <div class="post"> -            <h1>{{post.author}}</h1> -            <h2>{{post.date}}</h2> -            <p>{{post.content}}</p> +        <div class="feed-post"> +            {% for post in posts %} +            <div class="post"> +                <h1>{{post.author}}</h1> +                <h2>{{post.date}}</h2> +                <p>{{post.content}}</p> +            </div> +            {% endfor %}          </div> -        {% endfor %}      </div>  </div> | 
