Advertisement
Guest User

Liquid debug

a guest
Mar 6th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.17 KB | None | 0 0
  1. <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
  2.  
  3.   <header class="post-header">
  4.     <h1 class="post-title p-name" itemprop="name headline">{{ page.title }}</h1>
  5.     <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished" class="dt-published">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name" rel="author" class="p-author h-card">{{ page.author }}</span></span>{% endif %}
  6.         <span class="tag-container">
  7.           {% for tag in page.tags %}
  8.             <span class="post-tag p-category">{{ tag }}</span>
  9.           {% endfor %}
  10.         </span></p>
  11.   </header>
  12.  
  13.   <img src="{{site.baseurl}}/images/{{page.photo}}">
  14.  
  15.   <div class="post-content e-content" itemprop="articleBody">
  16.     {{ content }}
  17.   </div>
  18.  
  19.   <footer class="">
  20.     Syndicated: {% if page.syndication && page.syndication.length > 0 %}
  21.      {% for syndicated in page.syndication %}
  22.        <a class="u-syndication" href="{{syndicated.url}}">{{syndicated.name}}</a>
  23.      {% endfor %}
  24.    {% endif %}
  25.  </footer>
  26.  
  27. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement