mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
9094eff30a
* Add package files whitelist * Add flex shrink * Add flex shrink * Add docs config * Fix flex shrink * Fix hero pages * Add docs folder
29 lines
582 B
HTML
29 lines
582 B
HTML
---
|
|
layout: default
|
|
route: blog
|
|
---
|
|
|
|
{% include blog-hero.html %}
|
|
|
|
{% for post in site.posts %}
|
|
<section class="section">
|
|
<div class="container">
|
|
<div class="columns">
|
|
<div class="column is-8">
|
|
<p class="subtitle4">
|
|
{{ post.date | date_to_string }}
|
|
</p>
|
|
<h2 class="title">
|
|
<a href="{{ post.url }}">
|
|
{{ post.title }}
|
|
</a>
|
|
</h2>
|
|
<div class="content">
|
|
{{ post.content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endfor %}
|