... almost. It looks identical, just some minor things to fix up. Yes! the templates exist now and work!! Add `clean` back to `make all` and use `-c` in `gsutil rsync`, which will ignore mtime and use checksums when comparing files instead, meaning we don't have to re-upload all of /media/ every time! (^_^) Also fix a broken link to the kegerator project page
14 lines
246 B
HTML
14 lines
246 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block page_title %}{{ page.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<header>
|
|
<h1>{{ page.title }}</h1>
|
|
</header>
|
|
<section>
|
|
{{ page.body | markdown }}
|
|
</section>
|
|
</article>
|
|
{% endblock %}
|