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
21 lines
549 B
HTML
21 lines
549 B
HTML
---
|
|
layout: base
|
|
---
|
|
<nav>
|
|
<a href="/">{{ site.config.name }}</a>
|
|
<a href="/blog/">/blog</a>
|
|
|
|
<div class="nav-right hidden-mobile">
|
|
{% assign sections = page.submenu %}
|
|
{% for section in sections %}
|
|
<a href="{{section[1]}}">{{section[0]}}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="content layout-{{ page.layout }}">
|
|
{% if page.title %}<h2>{{page.title}}</h2>{% endif %}
|
|
{{ content }}
|
|
<br/>
|
|
</div>
|
|
<p class="footer center-block">powered by <a href="https://jorge.olano.dev">jorge</a></p>
|