mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
08ef4df2c0
* Add Bulma v9 * Add vendor dependencies * Fix native * Fix sponsors * Add style attribute
33 lines
587 B
HTML
33 lines
587 B
HTML
---
|
|
layout: default
|
|
route: blog
|
|
breadcrumb:
|
|
- home
|
|
- blog
|
|
---
|
|
|
|
{% include global/navbar.html id="Blog" %}
|
|
|
|
{% capture hero_content %}
|
|
{% include elements/rss-button.html %}
|
|
{% endcapture %}
|
|
{%
|
|
include components/hero.html
|
|
color="primary"
|
|
icon="fas fa-rss"
|
|
title="The **official** Bulma **blog**"
|
|
subtitle="Stay updated about new features, bug fixes, and releases"
|
|
content=hero_content
|
|
%}
|
|
|
|
<main class="bd-main">
|
|
<div class="bd-posts">
|
|
{% for post in site.posts %}
|
|
{%
|
|
include elements/post.html
|
|
post=post
|
|
%}
|
|
{% endfor %}
|
|
</div>
|
|
</main>
|