-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (30 loc) · 1.06 KB
/
index.html
File metadata and controls
40 lines (30 loc) · 1.06 KB
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
---
layout: default
---
<div class="posts">
{% for post in site.posts %}
<div class="container-blog">
<div class="header-container-blog">
<img src="{{ post.banner }}" alt="" class="header-image-blog" />
<div class="txt-prot"></div>
<div class="header-blog">
<h1 class="main-heading-blog"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }} <small>- {{ post.author }}</small></a></h1>
</div> <!-- END header -->
</div>
<div class="overlay-header-blog"></div>
<div class="body-blog">
<!--img src="{{ post.pfp }}" alt="Hugh Jackman" class="body-image-blog" /-->
<!--button class="body-action-button-blog u-flex-center-blog"></button-->
<div class="u-clearfix-blog"></div>
<div class="body-info-blog">
{{ post.excerpt }}
</div>
<div class="body-more-blog" onclick="window.location.href = '{{ site.baseurl }}{{ post.url }}'">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
{% endfor %}
</div>