-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·50 lines (49 loc) · 1.59 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
---
layout: default
title: Sensory Aesthetics
---
<section class="section--first section--frontpage">
<div class="section-title">
<div class="container">
<h1>
{{ site.name }}
</h1>
<div class="postMeta-wrapper postMeta-wrapper--frontpage">
<ul class="postMeta">
<li class="postMeta-tagline">
exploring design and computation
</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="{{ post.url }}">
<div class="postArticle-image desaturate" style="background-image:url('{{ post.image.feature | prepend: site.baseurl_featured_img }}')">
</div>
</a>
{% else %}
<a href="{{ 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="{{ post.url }}">{{ post.title }}</a>
</article>
<div class="block-postMeta">{{ post.date | date_to_string }}</div>
</div>
</li>
{% endfor %}
</ul>
</div>
</div>
</section>