layout: default


<!– Describes Metadata for Atom Feed –> <article itemscope itemtype=“schema.org/BlogPosting”>

<!-- Article Header -->
<header class="post-header">
    <h1 class="post-title" itemprop="name headline">{{ page.title | escape }}</h1>
    <p class="post-meta">
        <!-- DateTime Assigned as XML for Atom? -->
        <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
            {% assign date_format = site.Hobbies.date_format | default: "%b %-d, %Y" %}
            {{ page.date | date: date_format }}
        </time>
        {% if page.author %}
            <span itemprop="author" itemscope itemtype="http://schema.org/Person">
                <span class="post-author" itemprop="name"{{ page.author }}></span>
            </span>
        {% endif %}
    </p>
</header>

<!-- Post Content -->
<div class="post-content" itemprop="articleBody">
    {{ content }}
</div>

<!-- Hides Post URL in Post-->
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>

</article>