forked from SdtElectronics/jekyll-theme-antarctica
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
executable file
·25 lines (23 loc) · 715 Bytes
/
home.html
File metadata and controls
executable file
·25 lines (23 loc) · 715 Bytes
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
---
layout: scaffold
widgets:
- colophon
- related_sites
- share
- global_cmt
---
<div id = "midComp" class = "midMulRow mid-content noScrollbar fixedCont">
<div id = "midContTop"></div>
{%- assign post = site.posts | concat: site.projects | sort: 'date' | reverse -%}
{%- assign posts = site.posts | concat: site.projects -%}
{%- for item in posts -%}
{% if item != nil and item.properties contains "pinned" %}
{% include postPrev.html %}
{% endif %}
{%- endfor -%}
{%- for item in posts -%}
{% unless item == nil or item.properties contains "pinned" %}
{% include postPrev.html %}
{% endunless %}
{%- endfor -%}
</div>