hotfix: remove references to custom repository page and link directly to repository's page
This commit is contained in:
parent
3c6ccc278b
commit
d8126a9268
1 changed files with 4 additions and 2 deletions
|
@ -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 %}
|
||||||
|
|
Loading…
Reference in a new issue