article_info.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <footer class="post-info">
  2. <i class="icon-calendar"></i>
  3. <span >
  4. <abbr class="published" title="{{ article.date.isoformat() }}">
  5. {{ article.locale_date }}
  6. </abbr>
  7. </span>
  8. {% if article.author %}
  9. <i class="icon-user offset"></i>
  10. <span>
  11. <address class="vcard author">
  12. <a class="url fn" href="/{{ article.author.url }}">{{ article.author }}</a>
  13. </address>
  14. </span>
  15. {% endif %}
  16. <i class="icon-fork offset"></i>
  17. <span >
  18. <a target="_blank" href="{{GITHUB_EDIT_PREFIX}}{{ article.source_path|replace(ROOT,'') }}"> Fork me</a>
  19. </span>
  20. <i class="icon-twitter offset"></i>
  21. <span >
  22. <a class="twitter-share"
  23. href="http://twitter.com/share">Tweet me</a>
  24. <!--data-twitter-original-referrer="{{SITEURL}}"
  25. data-twitter-related="{{ TWITTER_SHARE_RELATED }}"
  26. data-twitter-text="{{article.metadata.get('twitter_msg','Check this')}}"
  27. data-twitter-url="{{ article.bitly_url }}"
  28. data-twitter-via="{{ TWITTER_SHARE_VIA }}" -->
  29. </span>
  30. <div class="pull-right">
  31. {% include 'tags_list.html' %}
  32. </div>
  33. </footer>