You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.1 KiB

  1. {% extends "base.html" %}
  2. {% import "bootstrap/wtf.html" as wtf %}
  3. {% block title %}Flasky{% endblock %}
  4. {% block page_content %}
  5. <div class="page-header">
  6. <h1>
  7. Hello, {% if current_user.is_authenticated %}{{ current_user.username }}{% else %}Stranger{% endif %}!
  8. </h1>
  9. </div>
  10. <div>
  11. {% if current_user.can(Permission.WRITE) %}
  12. {{ wtf.quick_form(form) }}
  13. {% endif %}
  14. </div>
  15. <ul class="posts">
  16. {% for post in posts %}
  17. <li class="post">
  18. <div class="post-thumbnail">
  19. <a href="{{ url_for('.user', username=post.author.username) }}">
  20. <img class="img-rounded profile-thumbnail" src="{{ post.author.gravatar(size=40) }}">
  21. </a>
  22. </div>
  23. <div class="post-content">
  24. <div class="post-date">{{ moment(post.timestamp).fromNow() }}</div>
  25. <div class="post-author"><a href="{{ url_for('.user', username=post.author.username) }}">{{ post.author.username }}</a></div>
  26. <div class="post-body">{{ post.body }}</div>
  27. </div>
  28. </li>
  29. {% endfor %}
  30. </ul>
  31. {% endblock %}