forked from voteflux/flux-website-v2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
blog.html
52 lines (42 loc) · 1.06 KB
/
blog.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
---
layout: default
permalink: /blog/
dark-theme: true
title: Blog
#nav-title: Blog
#group: navigation
#nav-order: 10
---
{% include navbar.html %}
<div class="bg-near-black texture-bg-img height-30vh py4">
<div class="max-width-4 mx-auto px2 sm-px3 pt5">
{% include components/main-heading.html
text="Lorem ipsum dolor sit amet"
font-size="h0"
font-weight="bold"
line="true"
classes="white" %}
</div>
</div>
<!--<ul>
{% for post in site.posts %}
<li>
<a">{{ post.title }}</a>
</li>
{% endfor %}
</ul>-->
{% for post in site.posts %}
<article class="py4 bg-black light-gray inline-block col-6 left">
<a href="{{ post.url }}" class="max-width-4 mx-auto px2 md-px3">
<div class="lg-flex mxn2">
<div class="lg-col-12 px2 lg-px3 ">
<h2 class="mb0 h0 line-height-2 bold white line-height-2">{{ post.title }}</h2>
<p class="h-font h3 sm-h2 light silver mb3">Excerpt here</p>
</div>
<div class="lg-col-8 px2 lg-px3">
</div>
</div>
</a>
</article>
{% endfor %}
{% include footer.html %}