diff options
Diffstat (limited to 'app/templates/yes.html')
-rw-r--r-- | app/templates/yes.html | 49 |
1 files changed, 48 insertions, 1 deletions
diff --git a/app/templates/yes.html b/app/templates/yes.html index b915221..00a330d 100644 --- a/app/templates/yes.html +++ b/app/templates/yes.html @@ -9,7 +9,54 @@ <a href="{{ url_for('home') }}" class="tab-home"></a> <div class="main"> - <p> yes, no?</p> + + <div class="feed-message"> + {% for message in messages %} + <div class="message"> + <h1>{{message.author}}</h1> + <h2>{{message.date}}</h2> + <p>{{message.content}}</p> + </div> + {% endfor %} + </div> + + <div class="feed-post"> + {% for news in news %} + <div class="news"> + <h1>{{news.author}}</h1> + <h2>{{news.date}}</h2> + <p>{{news.content}}</p> + </div> + {% endfor %} + </div> + + <div class="feed-ads"> + <div class="ad"> + Buy my sourdough, ah + </div> + <div class="ad"> + Check out this sponsored link, ere. + </div> + <div class="ad"> + Another random ad (from a high-paying sponsor hopefully) + </div> + <div class="ad"> + Ah I literally don't have any other placeholder ideas for ads. + </div> + <div class="ad"> + Buy my sourdough, ah + </div> + <div class="ad"> + Check out this sponsored link, ere. + </div> + <div class="ad"> + Another random ad (from a high-paying sponsor hopefully) + </div> + <div class="ad"> + Ah I literally don't have any other placeholder ideas for ads. + </div> + </div> + </div> </div> </div> |