layout: default


<article class=“post h-entry” itemscope itemtype=“schema.org/BlogPosting”>

<div class="container">
  <div class="col-xxl-12">
    <div class="card card-top">
      <div class="card-body">
        <header class="post-header">
          <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>

          <!-- Start Description -->
          {%- if page.description -%}
          {%- if site.html_escape.description -%}
          <p class="page-description">{{ page.description | escape }}</p>
          {%- else -%}
          <p class="page-description">{{ page.description }}</p>
          {%- endif -%}
          {%- endif -%}
          <!-- End Description -->

          <p class="post-meta post-meta-title">
            <!-- Start Published/Modified -->
            {%- assign date_format = site.struggle.date_format | default: "%b %-d, %Y" -%}
            <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
              {{ page.date | date: date_format }}
            </time>
            {%- if page.modified_date -%}
            ~
            {%- assign mdate = page.modified_date | date_to_xmlschema -%}
            <time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified">
              {{ mdate | date: date_format }}
            </time>
            {%- endif -%}
            <!-- End Published/Modified -->

            <!-- Start Authors -->
            {%- if page.author -%}
            {% for author in page.author %}
            <span itemprop="author" itemscope itemtype="http://schema.org/Person">
              <span class="p-author h-card" itemprop="name">
                <a href="{{ 'about' | relative_url }}#{{ author }}">{{ author }}</a>
              </span>
            </span>
            {%- if forloop.last == false %}, {% endif -%}
            {% endfor %}
            {%- endif -%}
            <!-- End Authors -->
          </p>

          <!-- Start Categories -->
          {% if page.categories.size > 0 and site.show_tags %}
          <p class="category-tags"><i class="fas fa-tags category-tags-icon"></i></i>
            {% for category in page.categories %}
            <a class="category-tags-link" href="{{site.baseurl}}/categories/#{{category|slugize}}">{{category}}</a>
            {% unless forloop.last %}&nbsp;{% endunless %}
            {% endfor %}
          </p>
          {% endif %}
          <!-- End Categories -->

          <!-- Start Notebook -->
          {% if page.layout == 'notebook' %}
          {% if page.badges or page.badges == nil %}
          <div class="pb-5 d-flex flex-wrap flex-justify-end">
            {% unless page.hide_github_badge or site.default_badges.github != true %}{% include notebook_github_link.html %}{% endunless %}
            {% unless page.hide_binder_badge or site.default_badges.binder != true %}{% include notebook_binder_link.html %}{% endunless %}
            {% unless page.hide_colab_badge or site.default_badges.colab != true %}{% include notebook_colab_link.html %}{% endunless %}
          </div>
          {% endif -%}
          {% endif -%}
          <!-- End Notebook -->

        </header>

        <div class="post-content e-content" itemprop="articleBody">
          <div>
            <!-- Start TOC -->
            <div id="table-of-contents">
              {{ content | toc_only }}
            </div>
            <!-- End TOC -->

            <!-- Start Content -->
            <div id="markdown-content py-5">
              {{ content | inject_anchors }}
            </div>
            <!-- End Content -->
          </div>
        </div>

        {%- if page.comments -%}
        {%- include utterances.html -%}
        {%- endif -%}

        {%- if site.disqus.shortname -%}
        {%- include disqus_comments.html -%}
        {%- endif -%}

        <a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
      </div>
    </div>
  </div>
</div>

</article>