-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
55 lines (42 loc) · 1.5 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
---
layout: default
id: splash
---
{% assign postsLeft = site.posts | where: 'categories', 'left' %}
{% assign postsRight = site.posts | where: 'categories', 'right' %}
<div class="column typeset column--left" id="left">
<header class="site-header left" role="banner">
{% for i in (1 .. 2) %}
<div class="title-stack">
{% for i in (1 .. 3) %}
<a class="site-title" href="{{ "/" | relative_url}}">
<h4>ulises<span>.us</span></h4>
</a>
{% endfor %}
</div>
{% endfor %}
</header>
{% for post in postsLeft %}
{% if post.tags contains 'sticky' %}
{% include post-single.html %}
{% endif %}
{% endfor %}
{% for post in postsLeft %}
{% unless post.tags contains 'sticky' %}
{% include post-single.html %}
{% endunless %}
{% endfor %}
</div>
<div class="column typeset column--right" id="right">
{% include header.html %}
{% for post in postsRight %}
{% if post.tags contains 'sticky' %}
{% include post-single.html %}
{% endif %}
{% endfor %}
{% for post in postsRight %}
{% unless post.tags contains 'sticky' %}
{% include post-single.html %}
{% endunless %}
{% endfor %}
</div>