forked from jgthms/bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
60 lines (55 loc) · 1.57 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
51
52
53
54
55
56
57
58
59
60
---
layout: default
route: blog
breadcrumb:
- home
- blog
---
{% include global/navbar.html id="Blog" %}
<main class="bd-main">
<div class="bd-main-container container">
<div class="bd-duo">
<div class="bd-lead">
{% include components/breadcrumb.html %}
<header class="bd-header">
<div class="bd-header-titles">
<h1 class="title">
Blog
</h1>
<p class="subtitle is-4">
Stay updated about new features, bug fixes, and releases
</p>
<a class="button bd-is-rss" href="{{ site.url }}/atom.xml">
<span class="icon">
<i class="fas fa-rss"></i>
</span>
<span>Subscribe</span>
</a>
</div>
<div class="bd-header-carbon">
{% include elements/carbon.html %}
</div>
</header>
<div class="bd-content">
<div class="bd-links">
{% for post in site.posts %}
{% assign date = post.date | date: "%B %-d" %}
{% assign more = post.introduction | markdownify | strip_html %}
{%
include elements/link.html
url=post.url
color=post.color
icon_brand=post.icon_brand
icon_regular=post.icon_regular
icon=post.icon
surtitle=date
name=post.name
subtitle=more
%}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</main>