From 2c2144919f84f66fa98be1a11e3ad8f5e24675a3 Mon Sep 17 00:00:00 2001 From: Raniere Silva Date: Fri, 31 Mar 2017 23:11:50 +0100 Subject: [PATCH 1/2] Extend header of index.html to include other collaborative documents Close #388. --- index.html | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/index.html b/index.html index 99721ef..1de824c 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@ enddate: FIXME # machine-readable end date for the workshop in YYYY-MM-DD 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@example.org"] # boxed, comma-separated list of contact email addresses for the 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 +collaborative_notes: # optional: URL for the workshop collaborative_notes eventbrite: # optional: alphanumeric key for Eventbrite registration, e.g., "1234567890AB" (if Eventbrite is being used) --- @@ -230,24 +230,18 @@ and the administrator will contact you if we need any extra information. -{% if page.etherpad %} -

- Etherpad: {{page.etherpad}}. -
- We will use this Etherpad for chatting, taking notes, and sharing URLs and bits of code. +{% if page.collaborative_notes %} +

+ We will use this collaborative document for chatting, taking notes, and sharing URLs and bits of code.

{% endif %} From c56bc86f681b1a16a7aa952d5dc880c35f5d2489 Mon Sep 17 00:00:00 2001 From: Raniere Silva Date: Fri, 7 Apr 2017 21:49:19 +0100 Subject: [PATCH 2/2] Improve comments as suggested by @lexnederbragt --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 1de824c..eb7ffe1 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@ enddate: FIXME # machine-readable end date for the workshop in YYYY-MM-DD 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@example.org"] # boxed, comma-separated list of contact email addresses for the host, lead instructor, or whoever else is handling questions, like ["marlyn.wescoff@example.org", "fran.bilas@example.org", "ruth.lichterman@example.org"] -collaborative_notes: # optional: URL for the workshop collaborative_notes +collaborative_notes: # optional: URL for the workshop collaborative notes, e.g. an Etherpad or Google Docs document eventbrite: # optional: alphanumeric key for Eventbrite registration, e.g., "1234567890AB" (if Eventbrite is being used) ---