Erick Ruiz de Chavez
c875c07933
While writing a new article, I was having issues with Perl making the replacements (it was trying to execute fenced code blocks). After a little bit of research, trying to keep the original script, I decided to keep things simpler and rewrite the generator script with Python instead. Reviewed-on: #1
14 lines
290 B
HTML
14 lines
290 B
HTML
---
|
|
layout: default
|
|
---
|
|
<div class="article">
|
|
<h2 class="article__title">
|
|
{{ page.title | escape }}
|
|
</h2>
|
|
<time class="article__published">
|
|
{{ page.date | date: "%Y-%m-%d" }}
|
|
</time>
|
|
<div class="article__content">
|
|
{{ content }}
|
|
</div>
|
|
</div>
|