-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (40 loc) · 1.15 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
---
layout: site
image: assets/img-min/social/K-DwbsTXliY.webp
description: my tech/gamedev/unity/c# blog
author: apkd
searchable: false
---
{% assign featured_posts = site.posts | where: "featured", "true" %}
<div class="row">
<div class="mt-3" id="pagefind-search-box"></div>
</div>
{% if featured_posts.size > 0 %}
<section class="featured-posts d-md-block mt-4" >
<!-- <div class="section-title"> -->
<!-- <h2><span>featured</span></h2> -->
<!-- </div> -->
<div class="row">
{% for post in featured_posts %}
{% include featuredbox.html %}
{% endfor %}
</div>
</section>
{% endif %}
<section class="recent-posts">
<!-- {% if featured_posts.size > 0 %}-->
<!-- <div class="section-title d-none d-md-block"> -->
<!-- <h2><span>everything</span></h2> -->
<!-- </div>-->
<!-- {% endif %}-->
<div class="row">
{% for post in paginator.posts %}
{% if post.featured != true %}
{% include postbox.html %}
{% endif %}
{% endfor %}
</div>
</section>
<span class="navigation" role="navigation">
{% include pagination.html %}
</span>