diff options
author | Mantas Vilčinskas <hi@mnts.lt> | 2022-02-12 11:31:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-12 11:31:50 +0200 |
commit | 6a773ffa642fb182580d8c81992c0c925ecedd15 (patch) | |
tree | f55d04c30b1e05983629f2896e242fdd135a3c11 | |
parent | 4278adfa68955602bf7f79adc42f177e63d34905 (diff) |
added link to affected page (for testing)
-rw-r--r-- | layouts/_default/list.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 9a12055..ac8b704 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -13,10 +13,20 @@ {{ range .Site.Params.systems }} {{ if eq .name $title }} {{ with .description }} - <p class="bold">{{ . }}</p> + <p class="bold">{{ . }} + + {{ with .link }} + <span class="span-icon"> + <a href="{{ . }}"> + 🔗 + </a> + </span> + {{ end }} + </p> {{ end }} {{ end }} {{ end }} + <!-- Average downtime --> |