-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·40 lines (33 loc) · 911 Bytes
/
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
---
layout: default
---
<!-- begin hero -->
<div class="hero">
<div class="hero__image">
<img class="lazy" data-src="{{site.hero.image}}" alt="{{site.author-name}}" style="object-fit: scale-down;">
</div>
<div class="hero__inner">
<div class="hero__content">
<h1 class="hero__title" style="display: none;">{{ site.hero.title }}</h1>
<p class="hero__description">{{ site.hero.description }}</p>
</div>
</div>
</div>
<!-- begin hero -->
{% include header.html %}
<div class="container-big">
<div class="row">
<div class="col col-12">
<div class="contaniner__inner">
<div class="row grid">
{% if site.posts.size > 0 %}
{% for post in paginator.posts %}
{% include article-content.html %}
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</div>
{% include pagination.html %}