28 lines
762 B
HTML
28 lines
762 B
HTML
<!DOCTYPE html>
|
|
<html{% if site.lang %} lang="{{ site.lang }}"{% endif %} prefix="
|
|
{% if site.addthis_profile_id %}addthis: http://www.addthis.com/help/api-spec{% endif %}
|
|
og: http://ogp.me/ns#
|
|
fb: http://ogp.me/ns/fb#
|
|
article: http://ogp.me/ns/article#">
|
|
|
|
{% include head.html %}
|
|
|
|
<body itemscope itemtype="http://schema.org/{% if page.is_post %}{{ "BlogPosting" }}{% else %}{{ "WebPage" }}{% endif %}">
|
|
|
|
{% include header.html %}
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class='col-sm-8'>
|
|
{{ content }}
|
|
</div>
|
|
<div class="col-sm-4">
|
|
{% include sidebar.html %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
|
|
</body>
|
|
</html>
|