mirror of
https://github.com/jgthms/bulma
synced 2026-03-20 12:24:28 -07:00
Add docs folder
This commit is contained in:
28
docs/blog.html
Normal file
28
docs/blog.html
Normal file
@@ -0,0 +1,28 @@
|
||||
---
|
||||
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 %}
|
||||
Reference in New Issue
Block a user