2016-02-29 22:30:35 +05:30
|
|
|
<!doctype html>
|
|
|
|
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
|
|
|
|
<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]-->
|
|
|
|
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
|
|
|
|
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]-->
|
|
|
|
<head>
|
|
|
|
{% include _head.html %}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="post-index">
|
|
|
|
|
|
|
|
{% include _browser-upgrade.html %}
|
|
|
|
|
|
|
|
{% include _navigation.html %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div id="main" role="main">
|
|
|
|
<div class="article-author-side">
|
|
|
|
{% include _author-bio.html %}
|
|
|
|
</div>
|
|
|
|
<div id="index">
|
|
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
{% capture written_year %}'None'{% endcapture %}
|
2016-07-25 22:57:33 +05:30
|
|
|
{% for post in site.categories.blog %}
|
2016-02-29 22:30:35 +05:30
|
|
|
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
|
|
|
|
{% if year != written_year %}
|
|
|
|
<h3>{{ year }}</h3>
|
|
|
|
{% capture written_year %}{{ year }}{% endcapture %}
|
|
|
|
{% endif %}
|
|
|
|
<article>
|
|
|
|
{% if post.link %}
|
|
|
|
<h2 class="link-post"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> <a href="{{ post.link }}" target="_blank" title="{{ post.title }}"><i class="fa fa-link"></i></a></h2>
|
|
|
|
{% else %}
|
|
|
|
<h2><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
|
|
|
|
<p>{{ post.excerpt | strip_html | truncate: 160 }}</p>
|
|
|
|
{% endif %}
|
|
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
</div><!-- /#index -->
|
|
|
|
</div><!-- /#main -->
|
|
|
|
|
|
|
|
<div class="footer-wrap">
|
|
|
|
<footer>
|
|
|
|
{% include _footer.html %}
|
|
|
|
</footer>
|
|
|
|
</div><!-- /.footer-wrap -->
|
|
|
|
|
|
|
|
{% include _scripts.html %}
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|