From aac3e8a2500e8f878e2676a67d8ae2ae39acaf89 Mon Sep 17 00:00:00 2001 From: Aleksandra Nenadic Date: Fri, 30 Sep 2016 15:59:04 +0100 Subject: [PATCH] Make contact a list of strings instead of a single string. --- index.html | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 22080e8..e051ead 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@ enddate: FIXME # machine-readable end date for the workshop in YYYY-MM-DD format like 2015-01-02 instructor: ["FIXME"] # boxed, comma-separated list of instructors' names as strings, like ["Kay McNulty", "Betty Jennings", "Betty Snyder"] helper: ["FIXME"] # boxed, comma-separated list of helpers' names, like ["Marlyn Wescoff", "Fran Bilas", "Ruth Lichterman"] -contact: "FIXME" # contact email address for host, lead instructor, or whoever else is handling questions +contact: ["FIXME"] # boxed, comma-separated list of contact email addresses for host, lead instructor, or whoever else is handling questions, like ["marlyn.wescoff@example.org", "fran.bilas@example.org", "ruth.lichterman@example.org"] etherpad: # optional: URL for the workshop Etherpad if there is one eventbrite: # optional: alphanumeric key for Eventbrite registration, e.g., "1234567890AB" (if Eventbrite is being used) --- @@ -155,9 +155,23 @@

General Information

-->

Contact: - Please mail - {{page.contact}} for more - information. + Please email + {% if page.contact %} + {% for contact in page.contact: %} + {% if forloop.last and page.contact.size > 1 %} + or + {% else %} + {% unless forloop.first %} + , + {% endunless %} + {% endif %} + {{contact}} + {% endfor %} + {% else %} + to-be-announced + {% endif %} + + for more information.