-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 2.1 KB
/
Copy pathindex.html
File metadata and controls
52 lines (52 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
layout: page
description: "Passionate Gamemaster, MtG Enthusiast, Guitarplayer"
---
<div itemscope itemtype="https://schema.org/Blog">
{% for post in paginator.posts %}
<div class="post-preview" itemscope itemtype="https://schema.org/BlogPosting">
<meta itemprop="datePublished" content="{{ post.date }}">
<meta itemprop="image" content="{{ site.baseurl }}/{% if post.header-img %}{{ post.header-img }}{% else %}{{ site.header-img }}{% endif %}">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 itemprop="headline" class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 itemprop="description" class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
<p class="post-meta">Posted by <span itemprop="author" itemscope itemtype="https://schema.org/Person"><meta itemprop="url" content="{{ "/about.html" | prepend: site.baseurl | append: "#" | append: post.author }}"><meta itemprop="name" content="{{ post.author }}">{% if post.author %}{{ post.author }}{% else %}{{ site.title }}{% endif %}</span> on {{ post.date | date: "%B %d, %Y" }}</p>
</div>
<hr>
{% if forloop.index == -1 %}
<div class="post-preview">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Application development -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-7751167265610240"
data-ad-slot="1288512011"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<hr>
{% endif %}
{% endfor %}
</div>
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}