diff options
author | Mantas Vilčinskas <11616378+mistermantas@users.noreply.github.com> | 2020-04-10 16:17:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 16:17:27 +0300 |
commit | 047776b3880ddfbc24cabea3fdac673567d8af18 (patch) | |
tree | 803f3c97888dfeb2a83f4ec93e06eda7d238fe9f | |
parent | a09f60f8e34dc81ba3c20d9dc778f47d6cad82f0 (diff) | |
parent | 452e028082d41479435adf4f19079a4f664f556d (diff) |
Merge pull request #104 from pubbit-co/master
fix issue with disableComplexCalculations param being incorrectly ref…
-rw-r--r-- | layouts/_default/list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 8d80798..9a12055 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -20,7 +20,7 @@ <!-- Average downtime --> - {{ if not .Params.disableComplexCalculations }} + {{ if not .Site.Params.disableComplexCalculations }} <p class="bold"> <em> {{ $resolved := first 5 (where .Pages "Params.resolved" "=" true) }} |