1
0

entry.html 2.0 KB

12345678910111213141516171819202122232425
  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.publish_date.strftime("%B %d, %Y") }}</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. <a href="https://www.linkedin.com/shareArticle?mini=true&url={{site_url}}{{entry.permalink}}&title={{entry.title}}&source={{site_url}}" onclick="javascript:window.open(this.href, 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><i class="fa fa-linkedin-square fa-2x"></i></a>
  15. <a href="http://www.facebook.com/sharer/sharer.php?u={{site_url}}{{entry.permalink}}&title={{entry.title}}" onclick="javascript:window.open(this.href, 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><i class="fa fa-facebook-square fa-2x"></i></a>
  16. <a class="tweet" href="{{site_url}}/{{entry.permalink}}" title="{{entry.title}}" target="_blank"><i class="fa fa-twitter-square fa-2x"></i></a>
  17. <a href="https://plus.google.com/share?url={{site_url}}{{entry.permalink}}" onclick="javascript:window.open(this.href, 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><i class="fa fa-google-plus-square fa-2x"></i></a>
  18. <a href="mailto:?subject={{site_url}}{{entry.permalink}}&body={{entry.title}}" onclick="javascript:window.open(this.href, 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><i class="fa fa-envelope-square fa-2x"></i></a>
  19. </div>
  20. <div id="underpost">
  21. <h3>Discussions/Feedback.</h3>
  22. {% include 'discuss.html' %}
  23. </div>
  24. </div>
  25. {% endblock content %}