layout: default
<div class=“container”>
<div class="blog-post"> <h3> <strong><a href="{{ page.url }}">{{ page.title }}</a></strong> </h3> </div> <div class="blog-title"> <h4> {{ page.date | date: "%B %e, %Y" }} {% for tag in page.tags %} <span class="label label-success">{{ tag }}</span> {% endfor %} </h4> </div> <div class="panel panel-default"> <div class="panel-body"> <div class="blogpost"> {{ content }} <hr> <div class="related-posts"> <h5>Related Posts</h5> {% for post in site.related_posts limit:3 %} <div class="row"> <div class="col-sm-4 col-md-4 col-lg-4"> <h6 style="text-align: right"> {{ post.date | date: "%B %e, %Y" }} </h6> </div> <div class="col-sm-8 col-md-8 col-lg-8"> <h6 style="text-align: left"> <strong><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></strong> </h6> </div> </div> {% endfor %} </div> </div> </div> </div> {% include disqus.html %}
</div>