mirror of
https://github.com/MinimalBible/MinimalBible.github.io
synced 2025-07-01 22:05:59 -04:00
Remove schema.org reference to simplify markup
This commit is contained in:
13
index.html
13
index.html
@ -10,16 +10,16 @@ image:
|
||||
---
|
||||
|
||||
{% for post in paginator.posts %}
|
||||
<article class="hentry" itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
|
||||
<article class="hentry">
|
||||
<header>
|
||||
<div class="entry-meta"><span class="entry-date date published updated"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished"><a href="{{ site.url }}{{ post.url }}">{{ post.date | date: "%B %d, %Y" }}</a></time></span><span class="author vcard" itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name" class="fn"><a href="{{ site.url }}/about" title="About {{ site.owner.name }}" itemprop="url">{{ site.owner.name }}</a></span></span>{% if site.disqus_shortname and post.comments %} • <span class="entry-comments"><a href="{{ site.url }}{{ post.url }}#disqus_thread">Comment</a></span>{% endif %}</div><!-- /.entry-meta -->
|
||||
<div class="entry-meta"><span class="entry-date date published updated"><time datetime="{{ post.date | date_to_xmlschema }}"><a href="{{ site.url }}{{ post.url }}">{{ post.date | date: "%B %d, %Y" }}</a></time></span><span class="author vcard"><span class="fn"><a href="{{ site.url }}/about/" title="About {{ site.owner.name }}">{{ site.owner.name }}</a></span></span>{% if site.disqus_shortname and post.comments %} • <span class="entry-comments"><a href="{{ site.url }}{{ post.url }}#disqus_thread">Comment</a></span>{% endif %}</div><!-- /.entry-meta -->
|
||||
{% if post.link %}
|
||||
<h1 class="entry-title" itemprop="name"><a href="{{ site.url }}{{ post.url }}" rel="bookmark" itemprop="url" title="{{ post.title }}"><i class="icon-double-angle-right"></i></a> <a href="{{ post.link }}">{{ post.title }}</a></h1>
|
||||
<h1 class="entry-title"><a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}"><i class="icon-double-angle-right"></i></a> <a href="{{ post.link }}">{{ post.title }}</a></h1>
|
||||
{% else %}
|
||||
<h1 class="entry-title" itemprop="name"><a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a></h1>
|
||||
<h1 class="entry-title"><a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a></h1>
|
||||
{% endif %}
|
||||
</header>
|
||||
<div class="entry-content" itemprop="description">
|
||||
<div class="entry-content">
|
||||
{{ post.content }}
|
||||
</div><!-- /.entry-content -->
|
||||
</article><!-- /.hentry -->
|
||||
@ -58,5 +58,4 @@ image:
|
||||
{% else %}
|
||||
Next
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
</div><!-- /.pagination -->
|
Reference in New Issue
Block a user