-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Includes optional what3words address of the workshop venue (#838)
* Includes optional what3words address of the workshop venue * Corrects what3words URL in variable description * Adds description of what3words and why it might be useful. Moves the what3words variable to sit alongside the other optional variables, for consistency with the documentation.
- Loading branch information
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ helper: ["helper one", "helper two"] # boxed, comma-separated list of helper | |
email: ["[email protected]","[email protected]"] # boxed, comma-separated list of contact email addresses for the host, lead instructor, or whoever else is handling questions, like ["[email protected]", "[email protected]", "[email protected]"] | ||
collaborative_notes: # optional: URL for the workshop collaborative notes, e.g. an Etherpad or Google Docs document (e.g., https://pad.carpentries.org/2015-01-01-euphoria) | ||
eventbrite: # optional: alphanumeric key for Eventbrite registration, e.g., "1234567890AB" (if Eventbrite is being used) | ||
what3words: # optional: what3words (https://what3words.com) address of the workshop venue, without leading slashes e.g. "globe.lessening.computers" | ||
--- | ||
|
||
{% comment %} See instructions in the comments below for how to edit specific sections of this workshop template. {% endcomment %} | ||
|
@@ -174,6 +175,10 @@ address. | |
<a href="//www.openstreetmap.org/?mlat={{page.latitude}}&mlon={{page.longitude}}&zoom=16">OpenStreetMap</a> | ||
or | ||
<a href="//maps.google.com/maps?q={{page.latitude}},{{page.longitude}}">Google Maps</a>. | ||
{% if page.what3words %} | ||
What3Words location: | ||
<a href="https://what3words.com/{{page.what3words}}">///{{page.what3words}}</a>. | ||
{%endif %} | ||
</p> | ||
{% elsif online == "true_public" %} | ||
<p id="where"> | ||
|