Skip to content

Commit

Permalink
chg: [templates] Added rel and target attributes to various anchor HT…
Browse files Browse the repository at this point in the history
…ML tags.
  • Loading branch information
cedricbonhomme committed Nov 28, 2023
1 parent 5823fad commit a299b7e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions freshermeat/templates/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ <h1 class="display-4">{% if config.FRESHERMEAT_INSTANCE_NAME %}{{ config.FRESHE
<p class="lead">This website is a directory of open source
software and tools related to security.
It is powered by
<a href="https://sr.ht/~cedric/freshermeat">Freshermeat</a>.</p>
<a href="https://sr.ht/~cedric/freshermeat" target="_blank" rel="noopener noreferrer">Freshermeat</a>.</p>
<hr class="my-4" />
</div>
<div class="col-md-4 text-justify">
<p>You are welcome to copy, modify or redistribute the
<a href="https://git.sr.ht/~cedric/freshermeat">source code</a> of Freshermeat
according to the <a href="https://www.gnu.org/licenses/agpl-3.0.html">Affero</a> GPL license.</p>
<a href="https://git.sr.ht/~cedric/freshermeat" target="_blank" rel="noopener noreferrer">source code</a> of Freshermeat
according to the <a href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank" rel="noopener noreferrer">Affero</a> GPL license.</p>
<p>All content (descriptions of projects) is licensed under CC-BY-SA.</p>
</div>
<div class="col-md-12">
Expand Down
2 changes: 1 addition & 1 deletion freshermeat/templates/organization.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h3 id="organization-name">{{ organization.name }}</h3>
<h5>Website</h5>
</div>
<div class="col-md">
<p><a href="{{ organization.website }}">{{ organization.website }}</a></p>
<p><a href="{{ organization.website }}" target="_blank" rel="noopener noreferrer">{{ organization.website }}</a></p>
</div>
</div>
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion freshermeat/templates/project.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h5>Reference</h5>
{% endif %}
<div class="row">
<div class="col">Homepage</div>
<div class="col text-truncate"><a href="{{ project.website }}">{{ project.website }}</a></div>
<div class="col text-truncate"><a href="{{ project.website }}" target="_blank" rel="noopener noreferrer">{{ project.website }}</a></div>
</div>
{% if project.manager_id %}
<div class="row">
Expand Down

0 comments on commit a299b7e

Please sign in to comment.