-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
61 lines (54 loc) · 2.36 KB
/
index.html
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
53
54
55
56
57
58
59
60
61
---
layout: default
---
<div class="home">
<ul class="post-list">
{% for post in paginator.posts %}
<li>
<h1 class="post-list-heading">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h1>
<span class="post-meta"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%b %-d, %Y" }}</time> |
<a class="share tw" href="https://twitter.com/intent/tweet?text=Check%20out%20{{ post.title }}%20at%20{{ site.url }}{{ post.permalink }}"><span class="icon-twitter"></span></a>
<a class="share fb" href="http://www.facebook.com/sharer.php?u={{ site.url }}{{ post.permalink }}&p[title]={{ post.title }}"><span class="icon-facebook"></span></a>
<a class="share cm" href="{{ post.permalink }}#disqus_thread"><span class="icon-comment"></span></a>
<a class="share" href="mailto:?subject={{ post.title }} at martin-brennan.com"><span class="icon-email"></span></a>
</span>
<p>
{{ post.excerpt }} {% if post.excerpt != post.content %}<a href="{{ post.url | prepend: site.baseurl }}">read more...</a>{% endif %}
</p>
</li>
{% endfor %}
</ul>
<table style="width: 100%;">
<tr>
<td style="width: 15%;">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous"><< Previous</a>
{% endif %}
</td>
<td style="text-align: center;">
<span class="page_number ">{{ paginator.page }} // {{ paginator.total_pages }}</span>
</td>
<td style="text-align: right; width: 15%;">
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Next >></a>
{% endif %}
</td>
</tr>
</table>
<p> </p>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Footer 2 -->
<ins class="adsbygoogle"
style="display:inline-block;width:100%;height:90px"
data-ad-client="ca-pub-2399752909796795"
data-ad-slot="1978471069"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<p>
</p>
<p class="alert info"><span class="icon-info"></span> Want to read regular updates? Subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS!</a></p>
</div>