1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <footer class="post-info">
- <i class="icon-calendar"></i>
- <span >
- <abbr class="published" title="{{ article.date.isoformat() }}">
- {{ article.locale_date }}
- </abbr>
- </span>
- {% if article.author %}
- <i class="icon-user offset"></i>
- <span>
- <address class="vcard author">
- <a class="url fn" href="/{{ article.author.url }}">{{ article.author }}</a>
- </address>
- </span>
- {% endif %}
- <i class="icon-fork offset"></i>
- <span >
- <a target="_blank" href="{{GITHUB_EDIT_PREFIX}}{{ article.source_path|replace(ROOT,'') }}"> Fork me</a>
- </span>
- <i class="icon-twitter offset"></i>
- <span >
- <a class="twitter-share"
- href="http://twitter.com/share">Tweet me</a>
- <!--data-twitter-original-referrer="{{SITEURL}}"
- data-twitter-related="{{ TWITTER_SHARE_RELATED }}"
- data-twitter-text="{{article.metadata.get('twitter_msg','Check this')}}"
- data-twitter-url="{{ article.bitly_url }}"
- data-twitter-via="{{ TWITTER_SHARE_VIA }}" -->
- </span>
- <div class="pull-right">
- {% include 'tags_list.html' %}
- </div>
- </footer>
|