jorge/commands/initfiles/layouts/default.html
Facundo Olano 56a92695f5
Init command and default assets (#5)
* 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
2024-02-17 17:09:19 -03:00

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>