layout: default


<article class=“post”>

<header>
  <h1>{{ page.title | escape }}</h1>
  <p class="text-secondary">
    <i class="fa fa-calendar-alt"></i><span style="display:inline-block; width: 3px;"></span>
    <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
      {% assign date_format = site.theme.date_format | default: "%b %-d, %Y" %}
      {{ page.date | date: date_format }}
    </time><span style="display:inline-block; width: 6px;"></span>
    {% if post %}
      {% assign categories = post.categories %}
    {% else %}
      {% assign categories = page.categories %}
    {% endif %}
    <h5 id="category-badge">
    {% for category in categories %}
      <a href="{{site.baseurl}}/categories/#{{category|slugize}}" class="badge badge-{{category}} badge-bounce-in" >{{category}}</a>
      {% unless forloop.last %}&nbsp;{% endunless %}
    {% endfor %}
    </h5>
  </p>
</header>
<div class="text-justify" id="content">
  {{ content }}
</div>
<div class="container">
  <div class="row">
    <div class="previous col text-right">
      {% if page.previous.url %}
        <a href="{{page.previous.url}}">&laquo; {{page.previous.title}}</a>
      {% endif %}
    </div>
    <div class="next col">  
      {% if page.next.url %}
      <a class="next" href="{{page.next.url}}">{{page.next.title}} &raquo;</a>
      {% endif %}
    </div>
  </div>
</div>

</article>