-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (49 loc) Β· 1.26 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
---
layout: page
---
{%- if site.posts.size > 0 -%}
<div class="ads-list-top">
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9851663453336407"
crossorigin="anonymous"
></script>
<!-- dev λͺ©λ‘ μλ¨ -->
<ins
class="adsbygoogle"
style="display: block"
data-ad-client="ca-pub-9851663453336407"
data-ad-slot="5981810563"
data-ad-format="auto"
data-full-width-responsive="true"
></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<ul class="posts">
{%- for post in paginator.posts -%}
<li>
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<div class="post-meta">
<a
class="post-link"
href="{{ post.url | relative_url }}"
style="width: 555px"
>
<h2 class="post-title">{{ post.title | escape }}</h2>
</a>
<div class="post-date">
<i class="icon-calendar"></i>{{ post.date | date: date_format }}
</div>
</div>
<div class="post">
{%- if site.show_excerpts -%} {{ post.excerpt }} {%- endif -%}
</div>
</li>
{%- endfor -%}
</ul>
<!-- Pagination links -->
{%- include pagination.html -%}
<!-- end Pagination links -->
{%- endif -%}