1
0

entry.html 1.0 KB

123456789101112131415161718192021222324252627282930
  1. {% extends "base.html" %}
  2. {% block title %} {{ entry.title }} {% endblock %}
  3. {% block content %}
  4. <div class="index">
  5. <div id="header" class="published"><a href="{{site_url}}">{{ entry.author }}</a> &ndash; {{ entry.published_html }}</div>
  6. <h1>{{ entry.title }}</h1>
  7. {{ entry.body_html }}
  8. <div class="tags">
  9. <p>This entry was tagged
  10. {% for tag in entry.tags %}<a class="tag" href="/tags/{{ tag.slug }}"><span>{{ tag.name }}</span></a>{% if not loop.last %}, {% endif %}{% endfor %}
  11. </div>
  12. <div id="social-btns" style="margin-top: 50px; margin-bottom: 0px">
  13. <h4>Share this post:</h4>
  14. <i class="fa fa-linkedin-square fa-2x"></i>
  15. <i class="fa fa-facebook-square fa-2x"></i>
  16. <i class="fa fa-twitter-square fa-2x"></i>
  17. <i class="fa fa-google-plus-square fa-2x"></i>
  18. <i class="fa fa-envelope-square fa-2x"></i>
  19. </div>
  20. <div id="underpost">
  21. <h3>Discussions/Feedback.</h3>
  22. {% include 'discuss.html' %}
  23. </div>
  24. </div>
  25. {% endblock content %}
  26. {% block body %}
  27. {{ super() }}
  28. {% set static_prefix = "../../" %}
  29. {% endblock body %}