entry.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {% extends "base.html" %}
  2. {% block page_title %} {{ entry.title }} {% endblock %}
  3. {% block header %}
  4. <div class="published"><a href="oz123.github.com">{{ entry.author }}</a> &ndash; {{ entry.published_html }}</div>
  5. <h1>{{ entry.title }}</h1>
  6. {% endblock %}
  7. {% block content %}
  8. <div class="body">
  9. {{ entry.body_html }}
  10. </div>
  11. <div class="meta">
  12. {% if entry.kind == 'link' %}
  13. <div class="link-url"><a href="{{ entry.url }}">continue reading on {{ entry.domain_name }}</a></div>
  14. {% endif %}
  15. </div>
  16. <div class="tags">
  17. <p>This entry was tagged
  18. {% for tag in entry.tags %}
  19. <a class="tag" href="oz123.github.com/{{ tag.slug }}"><span>{{ tag.name }}</span></a>{% if not loop.last %}, {% endif %}
  20. {% endfor %}
  21. </div>
  22. <div id="underpost">
  23. <h3>Discussions/Feedback.</h3>
  24. {% if entry.discussions_link %}
  25. <p>If you wish to, you can discuss/mock/upvote/downvote at <a href="{{ entry.discussions_link }}">Hacker News</a>.</p>
  26. {% endif %}
  27. <p>I do not accept comments on this blog. Managing the spam is a headache and I am better off without it.
  28. However, I do welcome your feedback - good or bad via email at <code>nahum.oz@gmail.com</code>.
  29. Specifically, I would be grateful for your feedback on errors, omissions, broken links, etc. </p>
  30. {% if entry.credits %}
  31. <h3>Credits.</h3>
  32. <p>{{ entry.credits_html }}</p>
  33. {% endif %}
  34. </div>
  35. <!--creadet by entry.html-->
  36. {% endblock %}