mirror of
https://github.com/MinimalBible/MinimalBible.github.io
synced 2024-12-21 06:08:19 -05:00
Fix a few more forgotten {{ site.url }}'s
This commit is contained in:
parent
4ca33bec70
commit
63f8b57d04
@ -13,7 +13,7 @@ description: "An archive of posts."
|
||||
{% 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>
|
||||
{% else %}
|
||||
<h1 class="entry-title" itemprop="name"><a href="{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a></h1>
|
||||
<h1 class="entry-title" itemprop="name"><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">
|
||||
|
@ -27,7 +27,7 @@ description: "An archive of posts sorted by tag."
|
||||
{% for post in pages_list %}
|
||||
{% if post.title != null %}
|
||||
{% if group == null or group == post.group %}
|
||||
<li class="entry-title" itemprop="name"><a href="{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a></li>
|
||||
<li class="entry-title" itemprop="name"><a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
Loading…
Reference in New Issue
Block a user