From b80acd6f3a97151488f9b47219913c5c67639fa7 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Fri, 31 Jul 2026 09:24:41 -0400 Subject: Return to NFS setup, include styling for size meter for members table --- index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'index.html') diff --git a/index.html b/index.html index 41cf02a..aae37f6 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,11 @@ summary: Listing all web pages under 1MB in total size {% for item in websites %} - + {% assign pct = item.size | times: 100.0 | divided_by: 1024.0 %} + {% if item.size < 410 %}{% assign c = "lightgreen" %} + {% elsif item.size < 717 %}{% assign c = "orange" %} + {% else %}{% assign c = "crimson" %}{% endif %} + {% if item.http == true %} -- cgit v1.3.1