From f72e375e66dd1fdf643396930b236c033abea10d Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 16 Apr 2023 10:23:23 +0000 Subject: [PATCH] about: Wrap team members into blocks This creates better spacing between the top row and the one below. Signed-off-by: Michael Tremer --- src/templates/about.html | 50 ++++++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 23 deletions(-) diff --git a/src/templates/about.html b/src/templates/about.html index 59d70773..7752571d 100644 --- a/src/templates/about.html +++ b/src/templates/about.html @@ -98,16 +98,18 @@ {% set core_team = backend.groups.get_by_gid("core-team") %} -
- {% for account in sorted(core_team, key=lambda a: a.created_at) %} -
-
- -
- -

{{ account.name or account.nickname }}

-
- {% end %} +
+
+ {% for account in sorted(core_team, key=lambda a: a.created_at) %} +
+
+ +
+ +

{{ account.name or account.nickname }}

+
+ {% end %} +
{% set team = [ @@ -115,21 +117,23 @@ ] %} {% if team %} -
- {% for account in sorted(team, key=lambda a: a.created_at) %} -
-
-
-
- -
-
-
-
{{ account.name or account.nickname }}
+
+
+ {% for account in sorted(team, key=lambda a: a.created_at) %} +
+
+
+
+ +
+
+
+
{{ account.name or account.nickname }}
+
-
- {% end %} + {% end %} +
{% end %} -- 2.47.2