A hint: This file contains one or more very long lines, so maybe it is better readable using the pure text view mode that shows the contents as wrapped lines within the browser window.
1 --- 2 layout: default 3 --- 4 <article class="post" itemscope itemtype="http://schema.org/BlogPosting"> 5 6 <header class="post-header"> 7 <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1> 8 <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time> {% if page.author %}<span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">/ {{ page.author }}</span></span>{% endif %}{% if page.tags != null %}/ 9 {% assign projectTags = site.data.tags.allowed-tags %} 10 {% for tag in page.tags %} 11 {% if projectTags contains tag %} 12 <a href="{{ "tag_" | append: tag | append: ".html"}}">{{tag}}</a>{% unless forloop.last %}, {% endunless%} 13 {% endif %} 14 {% endfor %} 15 {% endif %} 16 17 </p> 18 19 20 </header> 21 22 <div class="post-content" itemprop="articleBody"> 23 24 {% if page.summary %} 25 <div class="summary">{{page.summary}}</div> 26 {% endif %} 27 28 {{ content }} 29 </div> 30 31 32 33 </article> 34 35 {% include disqus.html %} 36 37 {{site.data.alerts.hr_shaded}} 38 39 {% include footer.html %}