mirror of
https://github.com/facundoolano/jorge.git
synced 2025-02-15 08:48:36 +01:00
![Facundo Olano](/assets/img/avatar_default.png)
* cleanup command arguments * add base init files * implement init command * add some layouts * add index * add blog index * post preview * honor config in file server * sample post * sample markdown * add css style to initfiles * more style tweaks * more style tweaks
32 lines
914 B
HTML
32 lines
914 B
HTML
---
|
|
layout: base
|
|
---
|
|
<nav>
|
|
<a href="/">{{ site.config.name }}</a>
|
|
<a href="/blog">/blog</a>
|
|
</nav>
|
|
|
|
<div class="content layout-{{ page.layout }}" lang="{{ page.lang | default:site.config.lang | default:'en' }}">
|
|
<header {% if page.cover-img %}class="with-cover"{% endif %}>
|
|
<h1 class="title">{{ page.title }}</h1>
|
|
{% if page.subtitle %}<h3 class="subtitle">{{ page.subtitle }}</h3>{% endif %}
|
|
{% if page.cover-img %}
|
|
<img class="cover-img" src="{{ page.cover-img | absolute_url }}">
|
|
{% endif %}
|
|
</header>
|
|
{{ content }}
|
|
</div>
|
|
|
|
<br/>
|
|
<br/>
|
|
|
|
<p class="center-block footer">
|
|
<span class="date">{{ page.date | date: "%d/%m/%Y" }}</span>
|
|
<span class="tags">
|
|
{% for tag in page.tags %}
|
|
<a href="/blog/tags#{{tag}}">#{{tag}}</a>
|
|
{% endfor %}
|
|
</span>
|
|
<br/>
|
|
powered by <a href="https://jorge.olano.dev">jorge</a>
|
|
</p>
|