Files
uutils.github.io/templates/project.html
T
Sylvestre Ledru e0c93eed2d Add WIP conditionals and good first issues link to project template
Hide installation/documentation links for WIP projects and add a
link to good first issues.
2026-04-01 08:29:51 +02:00

24 lines
888 B
HTML

{%- extends "base.html" -%}
{%- block title -%}
{{ page.title }} | uutils
{%- endblock title -%}
{%- block main -%}
<div class="title">{{ page.title }}</div>
<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 -%}