forked from RustPython/rustpython.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
24 lines (21 loc) · 627 Bytes
/
post.html
File metadata and controls
24 lines (21 loc) · 627 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
---
<!-- header section -->
<section class="bg-light">
<div class="w-md-80 m-auto">
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<mark class="post-date">{{ page.date | date: date_format }}</mark>
<div class="section-title mt-1">{{ site.title }} Blog</div>
<div class="title mt-sm-1"> {{ page.title | escape }}</div>
<small>{{ site.blog-intro }}</small>
</div>
</section>
<!-- content -->
<section>
<div class="w-md-80 m-auto">
<div class="w-md-80 blog-content">
{{ content }}
</div>
</div>
</section>