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
5659292a49
Improves semantic HTML and SEO by using a proper heading element.
24 lines
886 B
HTML
24 lines
886 B
HTML
{%- extends "base.html" -%}
|
|
|
|
{%- block title -%}
|
|
{{ page.title }} | uutils
|
|
{%- endblock title -%}
|
|
|
|
{%- block main -%}
|
|
<h1 class="title">{{ page.title }}</h1>
|
|
|
|
<div class="links">
|
|
<a href="https://github.com/uutils/{{page.title}}">Repository</a>
|
|
{%- if not page.extra.wip %}
|
|
<a href="/{{page.title}}/docs/installation.html">Installation</a>
|
|
{%- endif %}
|
|
<a href="https://github.com/uutils/{{page.title}}/issues">Issues</a>
|
|
<a href="https://github.com/uutils/{{page.title}}/issues?q=is%3Aissue%20state%3Aopen%20label%3A%22good%20first%20issue%22">Good first issues</a>
|
|
{%- if not page.extra.wip %}
|
|
<a href="/{{page.title}}/docs">Documentation</a>
|
|
{%- endif %}
|
|
<a href="https://github.com/uutils/{{page.title}}/releases">Releases</a>
|
|
</div>
|
|
{{ page.content | safe }}
|
|
{%- endblock main -%}
|