starchart/templates/pages/chart/components/repo_info.html

24 lines
681 B
HTML

{% set name = repository.html_url %}
<div class="repository__container">
<h3><a href="{{ repository.html_url }}">{{ repository.html_url }}</a></h3>
{% if repository.description %}
<p>{{ repository.description }}</p>
{% endif %}
<div class="repository__tags">
{% if repository.tags %}
{% for tag in repository.tags %}
<a class="repository__tag" href="/tag/{{ tag }}" >{{ tag }}</a>
{% endfor %}
{% endif %}
</div>
<!--
<a class="" href="{{ repository.html_url }}" target="_blank">On {{ repository.url }}</a>
-->
{% if repository.website %}
<a href="{{ repository.website }}" target="_blank">Homeage</a>
{% endif %}
</div>