diary-website

Website for diary
git clone https://git.in0rdr.ch/diary-website.git
Log | Files | Refs | Pull requests | README | LICENSE

post.html (694B)


      1 ---
      2 layout: default
      3 ---
      4 
      5 <article class="post container" itemscope itemtype="http://schema.org/BlogPosting">
      6   <header class="post-header">
      7     <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} &middot; <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}</p>
      8     <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
      9   </header>
     10   <div class="post-content" itemprop="articleBody">
     11     {{ content }}
     12     {% include post-share.html %}
     13   </div>
     14 </article>
     15 
     16 {% include comments.html %}