|
|
- {% extends "base.html" %}
- {% import "bootstrap/wtf.html" as wtf %}
-
- {% block title %}Flasky{% endblock %}
-
- {% block page_content %}
- <div class="page-header">
- <h1>
- Hello, {% if current_user.is_authenticated %}{{ current_user.username }}{% else %}Stranger{% endif %}!
- </h1>
- </div>
- <div>
- {% if current_user.can(Permission.WRITE) %}
- {{ wtf.quick_form(form) }}
- {% endif %}
- </div>
- <ul class="posts">
- {% for post in posts %}
- <li class="post">
- <div class="post-thumbnail">
- <a href="{{ url_for('.user', username=post.author.username) }}">
- <img class="img-rounded profile-thumbnail" src="{{ post.author.gravatar(size=40) }}">
- </a>
- </div>
- <div class="post-content">
- <div class="post-date">{{ moment(post.timestamp).fromNow() }}</div>
- <div class="post-author"><a href="{{ url_for('.user', username=post.author.username) }}">{{ post.author.username }}</a></div>
- <div class="post-body">{{ post.body }}</div>
- </div>
- </li>
- {% endfor %}
- </ul>
- {% endblock %}
|