2014-12-29 22:08:56 +00:00
{% extends "base.html" %}
{% block title %}{{ article.title|striptags }}{% endblock %}
2015-01-01 11:35:09 +00:00
{% block description %}{{ article.summary|striptags }}{% endblock %}
2015-01-01 20:06:34 +00:00
{% block seo %}
< meta property = "og:title" content = "{{ article.title|capitalize }}" / >
< meta property = "og:type" content = "article" / >
< meta property = "og:url" content = "{{ SITEURL }}/{{ article.url }}" / >
< meta name = "twitter:title" content = "{{ article.title|capitalize }}" / >
< meta name = "twitter:url" content = "{{ SITEURL }}/{{ article.url }}" / >
2015-01-09 18:56:22 +00:00
< meta itemprop = "url" content = "{{ SITEURL }}/{{ article.url }}" / >
2015-01-01 20:06:34 +00:00
{% if article.summary %}
2015-01-09 18:56:22 +00:00
< meta property = "og:description" content = "{{ article.summary|striptags|e }}" / >
< meta name = "twitter:description" content = "{{ article.summary|striptags|e }}" / >
2015-01-01 20:06:34 +00:00
{% endif %}
{% if article.date %}
2015-01-09 18:56:22 +00:00
< meta property = "og:article:published_time" content = "{{ article.date.strftime('%Y-%m-%d') }}" / >
2015-01-01 20:06:34 +00:00
{% endif %}
{% if article.modified %}
2015-01-09 18:56:22 +00:00
< meta property = "og:article:modified_time" content = "{{ article.modified.strftime('%Y-%m-%d') }}" >
< meta itemprop = "dateModified" content = "{{ article.date.strftime('%Y-%m-%d') }}" / >
2015-01-01 20:06:34 +00:00
{% endif %}
{% if article.author %}
2015-01-09 18:56:22 +00:00
< meta property = "og:article:author" content = "{{ article.author }}" >
2015-01-01 20:06:34 +00:00
{% endif %}
{% for tag in article.tags %}
< meta property = "og:article:tag" content = "{{ tag }}" >
{% endfor %}
{% if article.image %}
2015-01-01 20:24:40 +00:00
< meta property = "og:image" content = "{{ article.image }}" / >
< meta name = "twitter:image" content = "{{ article.image }}" / >
2015-01-09 18:56:22 +00:00
< meta itemprop = "image" content = "{{ article.image }}" / >
2015-01-01 23:56:46 +00:00
{% elif META_IMAGE %}
< meta property = "og:image" content = "{{ META_IMAGE }}" / >
< meta property = "og:image:type" content = "{{ META_IMAGE_TYPE }}" / >
< meta name = "twitter:image" content = "{{ META_IMAGE }}" / >
2015-01-09 18:56:22 +00:00
< meta itemprop = "image" content = "{{ META_IMAGE }}" / >
2015-01-01 20:06:34 +00:00
{% endif %}
{% endblock %}
2014-12-29 22:08:56 +00:00
{% block content %}
< div class = "mg-container-social uk-width-medium-1-10 uk-hidden-small" >
{% if SHARE %}
< div class = "uk-panel" id = "mg-panel-social" >
< ul class = "uk-nav uk-nav-side" >
< li >
< a href = "https://www.facebook.com/sharer/sharer.php?u={{ SITEURL }}/{{ article.url }}" onclick = "javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;" taget = "_blank" class = "uk-button" > < i class = "uk-icon-facebook-square" > < / i > Share< / a >
< / li >
< li >
< a href = "https://twitter.com/intent/tweet?text={{ article.title|striptags|urlencode }}&url={{ SITEURL }}/{{ article.url }}&via={{ TWITTER_USERNAME }}" onclick = "javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;" class = "uk-button" target = "_blank" > < i class = "uk-icon-twitter" > < / i > Tweet< / a >
< / li >
< li >
< a href = "https://plus.google.com/share?url={{ SITEURL }}/{{ article.url }}" onclick = "javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;" target = "_blank" class = "uk-button" > < i class = "uk-icon-google-plus-square" > < / i > Share< / a >
< / li >
< / ul >
< / div >
{% endif %}
< / div >
< div class = "uk-width-medium-7-10" >
2015-01-09 18:56:22 +00:00
< article class = "uk-article" >
2015-01-01 11:35:09 +00:00
< h1 class = "uk-heading-large uk-article-title" itemprop = "name" > {{ article.title }}< / h1 >
2015-01-09 18:56:22 +00:00
< p class = "uk-article-meta" > < time datetime = "{{ article.date.strftime('%Y-%m-%d') }}" itemprop = "datePublished" > {{ article.locale_date }}< / time > in < a href = "{{ SITEURL }}/{{ article.category.url }}" > {{ article.category }}< / a > {% if DISQUS_SITENAME %}, < br class = "uk-visible-small" > < i class = "uk-icon-comment" > < / i > < a href = "{{ SITEURL }}/{{ article.url }}#disqus_thread" itemprop = "discussionUrl" > < / a > {% endif %}< / p >
2014-12-29 22:08:56 +00:00
{% if SHARE %}
< a href = "https://www.facebook.com/sharer/sharer.php?u={{ SITEURL }}/{{ article.url }}" onclick = "javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;" taget = "_blank" class = "uk-button uk-visible-small" > < i class = "uk-icon-facebook-square" > < / i > Share< / a >
< a href = "https://twitter.com/intent/tweet?text={{ article.title|striptags|urlencode }}&url={{ SITEURL }}/{{ article.url }}&via={{ TWITTER_USERNAME }}" onclick = "javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;" class = "uk-button uk-visible-small" target = "_blank" > < i class = "uk-icon-twitter" > < / i > Tweet< / a >
< a href = "https://plus.google.com/share?url={{ SITEURL }}/{{ article.url }}" onclick = "javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;" target = "_blank" class = "uk-button uk-visible-small" > < i class = "uk-icon-google-plus-square" > < / i > Share< / a >
{% endif %}
2017-08-09 00:11:13 +00:00
{% if not MG_DISABLE_SUMMARY %}< p class = "uk-article-lead" itemprop = "description" > {{ article.summary|striptags }}< / p > {% endif %}
2017-08-07 00:32:45 +00:00
< section class = "uk-article-content" itemprop = "articleBody" > {{ article.content }}< / section >
2017-08-09 00:41:22 +00:00
{% set bullet = joiner(" • ") %}
< div align = "right" title = "Tags" > {% for tag in article.tags %}{{bullet()}}< a class = "mg-tag" href = "{{tag.url}}" > < i class = "uk-icon-tag" > < / i > {{tag.name}}< / a > {% endfor %}< / div >
2014-12-29 22:08:56 +00:00
< hr class = "uk-article-divider" >
< / article >
{% if DISQUS_SITENAME %}
< div id = "disqus_thread" > < / div >
< script type = "text/javascript" >
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = '{{ DISQUS_SITENAME }}'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
< / script >
< noscript > Please enable JavaScript to view the < a href = "http://disqus.com/?ref_noscript" > comments powered by Disqus.< / a > < / noscript >
2017-02-01 03:32:39 +00:00
< a href = "https://disqus.com" class = "dsq-brlink" > comments powered by < span class = "logo-disqus" > Disqus< / span > < / a >
2014-12-29 22:08:56 +00:00
{% endif %}
2017-08-09 00:41:22 +00:00
{% if ISSO_BASE_URL %}
< script data-isso = "{{ ISSO_BASE_URL }}/" src = "{{ ISSO_BASE_URL }}/js/embed.dev.js" > < / script >
< section id = "isso-thread" > < / section >
{% endif %}
2014-12-29 22:08:56 +00:00
< / div >
{% endblock %}