changed website target

This commit is contained in:
Hazel Noack 2025-07-15 16:03:07 +02:00
parent 55112c96dc
commit e5c7dc6f44
2 changed files with 2 additions and 1 deletions

View File

@ -43,6 +43,7 @@ air dev
## TODO ## TODO
- configure target of website cards
- implementing proper command line args - implementing proper command line args
- clear cache - clear cache
- implement fetching in intervals - implement fetching in intervals

View File

@ -40,7 +40,7 @@
{{ if eq .ActiveCard "websites" }} {{ if eq .ActiveCard "websites" }}
<div class="cards" id="websites"> <div class="cards" id="websites">
{{range $Website := .Websites }} {{range $Website := .Websites }}
<a target="_blank" href="{{ $Website.Url }}" class="card"> <a href="{{ $Website.Url }}" class="card">
<h3>{{ $Website.Name }}</h3> <h3>{{ $Website.Name }}</h3>
<img class="card-image" src="{{ $Website.ImageUrl }}" alt="{{ $Website.Name }} picture"> <img class="card-image" src="{{ $Website.ImageUrl }}" alt="{{ $Website.Name }} picture">
</a> </a>