mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-02 00:05:06 -04:00
f77db80077
2. Improved Blockquote comment header 3. Added Include File and Pullquote plugins 4. Improved blog typography 5. Simplified "Read more" link
27 lines
1014 B
HTML
27 lines
1014 B
HTML
{% include head.html %}
|
|
<body {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == 'none' %} class="no-sidebar" {% endif %}>
|
|
<header>{% include header.html %}</header>
|
|
<nav>{% include navigation.html %}</nav>
|
|
<div>
|
|
<div>
|
|
<div id="articles" {% if page.blog_index %} class="blog-index" {% endif %}>{{ content }}</div>
|
|
{% unless page.sidebar == 'none' %}
|
|
<aside>{% include sidebar.html %}</aside>
|
|
{% endunless %}
|
|
</div>
|
|
</div>
|
|
<footer>{% include footer.html %}</footer>
|
|
{% if site.twitter_follow_button or site.twitter_tweet_button %}
|
|
<script type="text/javascript">
|
|
(function(){
|
|
var twitterWidgets = document.createElement('script');
|
|
twitterWidgets.type = 'text/javascript';
|
|
twitterWidgets.async = true;
|
|
twitterWidgets.src = 'http://platform.twitter.com/widgets.js';
|
|
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
|
|
})();
|
|
</script>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|