index.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {% extends "base.html" %}
  2. {% block title %}
  3. {{ super() }}
  4. {% endblock title %}
  5. {% block head_description %}
  6. Home page of the {{ SITENAME|striptags }} blog.
  7. {% endblock head_description %}
  8. {% block content %}
  9. <div class="row-fluid">
  10. <header class="page_header span12">
  11. <h1>{{ SITENAME }} <small>{{ SITESUBTITLE }}</small></h1>
  12. </header>
  13. <div class="row-fluid">
  14. <div class="span3">
  15. <header>
  16. <h1>About me</h1>
  17. </header>
  18. <p>My name is anothony queen</p>
  19. </div>
  20. {% if articles %}
  21. <div class="span8">
  22. <header>
  23. <h1>Recent Posts <a id="allposts" href="{{ SITEURL }}/archives.html">all posts</a></h1>
  24. </header>
  25. {% for article in articles %}
  26. {% if loop.index0 < RECENT_ARTICLES_COUNT %}
  27. <ul class="list-all-articles">
  28. <li>
  29. <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
  30. <time pubdate="pubdate" datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>
  31. </li>
  32. </ul>
  33. {% endif %}
  34. {% endfor %}
  35. </div>
  36. </div>
  37. {% endif %}
  38. </div>
  39. {% endblock content %}