forked from vincentchan/mickey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 1.84 KB
/
index.html
File metadata and controls
51 lines (51 loc) · 1.84 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
---
layout: default
title: home
---
<!-- Google AdSense -->
<script data-ad-client="ca-pub-9558188612536134" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<section class="section--first section--frontpage">
<div class="section-title">
<div class="container">
<h1 class="textLogo textLogo--frontpage">
{{ site.name }}
</h1>
<div class="postMeta-wrapper postMeta-wrapper--frontpage">
<ul class="postMeta">
<li class="postMeta-tagline">
Connecting the dots that are called "Experiences"
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section--postsWrapper">
<div class="container">
<div class="blockGroup">
<ul class="blockGroup-list">
{% for post in site.posts %}
<li class="block">
<div class="postArticle-wrapper">
<article class="postArticle postArticle--short">
{% if post.image.feature %}
<a href="{{ site.baseurl }}{{ post.url }}">
<div class="postArticle-image desaturate" style="background-image:url('{{ site.baseurl }}{{ site.baseurl_featured_img }}{{ post.image.feature }}')">
</div>
</a>
{% else %}
<a href="{{ site.baseurl }}{{ post.url }}">
<div class="postArticle-image" style="background-image:url('{{site.baseurl}}assets/images/logo-black.svg')">
</div>
</a>
{% endif %}
<a class="postArticle-title" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</article>
<div class="block-postMeta">{{ post.date | date_to_string }}</div>
</div>
</li>
{% endfor %}
</ul>
</div>
</div>
</section>