hotfix: remove references to custom repository page and link directly to repository's page

This commit is contained in:
Aravinth Manivannan 2022-07-23 22:20:40 +05:30
parent 3c6ccc278b
commit d8126a9268
Signed by: realaravinth
GPG key ID: AD9F0F08E855ED88

View file

@ -1,7 +1,7 @@
{% set name = repository.url ~ "/" ~ repository.username ~ "/" ~ repository.name %} {% set name = repository.html_url %}
<div class="repository__container"> <div class="repository__container">
<h3><a href="/{{ name }}">{{ name }}</a></h3> <h3><a href="{{ repository.html_url }}">{{ repository.html_url }}</a></h3>
{% if repository.description %} {% if repository.description %}
<p>{{ repository.description }}</p> <p>{{ repository.description }}</p>
@ -15,7 +15,9 @@
{% endif %} {% endif %}
</div> </div>
<!--
<a class="" href="{{ repository.html_url }}" target="_blank">On {{ repository.url }}</a> <a class="" href="{{ repository.html_url }}" target="_blank">On {{ repository.url }}</a>
-->
{% if repository.website %} {% if repository.website %}
<a href="{{ repository.website }}" target="_blank">Homeage</a> <a href="{{ repository.website }}" target="_blank">Homeage</a>
{% endif %} {% endif %}