diff options
author | Mantas <11616378+mistermantas@users.noreply.github.com> | 2018-09-02 11:31:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-02 11:31:18 +0300 |
commit | c6cb9ae38cbf738138ee5211f6cf3844f42ef970 (patch) | |
tree | b89fd11248e699a33f39ab1ed85b995f553acfe9 | |
parent | b81901416ffd7dd7cc305172c16ae408334fe926 (diff) | |
parent | afbc7a082923ea97ed6b12c84fb861e2bb1995a0 (diff) |
Fix #23 / #22
fixed systems loop
-rw-r--r-- | layouts/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/index.html b/layouts/index.html index d75a071..13e684d 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -60,7 +60,7 @@ <!-- Individual info --> <div class="components"> {{ $systems := .Site.Params.systems }} - {{ range $index, $systems }} + {{ range $systems }} {{ $activeComponentIssues := where $active "Params.affected" "intersect" (slice .name) }} {{ $thisIsNotice := where $activeComponentIssues "Params.severity" "=" "notice" }} |