You've already forked uutils.github.io
mirror of
https://github.com/uutils/uutils.github.io.git
synced 2026-06-10 16:12:28 -07:00
15 lines
403 B
HTML
15 lines
403 B
HTML
{%- extends "base.html" -%}
|
|
|
|
{%- block title -%}
|
|
{{ page.title }} | uutils
|
|
{%- endblock title -%}
|
|
|
|
{%- block main -%}
|
|
<div class="title">{{ page.title }}</div>
|
|
<div class="details">
|
|
<div class="date">{{ page.date | date(format="%b %e, %Y") }}</div>
|
|
<div class="authors">{{ page.authors | join(sep=", ") }}</div>
|
|
</div>
|
|
{{ page.content | safe }}
|
|
{%- endblock main -%}
|