commit fbc2002747038764b07e1116a8864b9ca7dbda48 Author: hiro hiro@torproject.org Date: Tue Apr 9 17:46:26 2019 +0200
Finish outreach --- content/outreach/contents+en.lr | 2 ++ content/outreach/contents+es.lr | 2 ++ content/outreach/contents+fr.lr | 2 ++ content/outreach/contents.lr | 2 ++ content/outreach/kit/contents.lr | 17 +++++++++++++++++ content/outreach/speakers/contents.lr | 17 +++++++++++++++++ content/outreach/talk/contents.lr | 17 +++++++++++++++++ templates/outreach.html | 28 ++++++++++++++++++++++++++++ 8 files changed, 87 insertions(+)
diff --git a/content/outreach/contents+en.lr b/content/outreach/contents+en.lr index b93634f..a64023e 100644 --- a/content/outreach/contents+en.lr +++ b/content/outreach/contents+en.lr @@ -15,3 +15,5 @@ key: 4 html: outreach.html --- body: + +We love it when people bring information about Tor to their community events, conferences, and meetups, and so we've curated some beautiful materials for in-person and social media outreach. diff --git a/content/outreach/contents+es.lr b/content/outreach/contents+es.lr index b93634f..a64023e 100644 --- a/content/outreach/contents+es.lr +++ b/content/outreach/contents+es.lr @@ -15,3 +15,5 @@ key: 4 html: outreach.html --- body: + +We love it when people bring information about Tor to their community events, conferences, and meetups, and so we've curated some beautiful materials for in-person and social media outreach. diff --git a/content/outreach/contents+fr.lr b/content/outreach/contents+fr.lr index b93634f..a64023e 100644 --- a/content/outreach/contents+fr.lr +++ b/content/outreach/contents+fr.lr @@ -15,3 +15,5 @@ key: 4 html: outreach.html --- body: + +We love it when people bring information about Tor to their community events, conferences, and meetups, and so we've curated some beautiful materials for in-person and social media outreach. diff --git a/content/outreach/contents.lr b/content/outreach/contents.lr index b93634f..a64023e 100644 --- a/content/outreach/contents.lr +++ b/content/outreach/contents.lr @@ -15,3 +15,5 @@ key: 4 html: outreach.html --- body: + +We love it when people bring information about Tor to their community events, conferences, and meetups, and so we've curated some beautiful materials for in-person and social media outreach. diff --git a/content/outreach/kit/contents.lr b/content/outreach/kit/contents.lr new file mode 100644 index 0000000..deb74b4 --- /dev/null +++ b/content/outreach/kit/contents.lr @@ -0,0 +1,17 @@ +section: outreach +--- +section_id: outreach +--- +color: primary +--- +_template: layout.html +--- +title: Stream team kit +--- +subtitle: This kit includes printable flyers, stickers, and other materials to get people excited about using Tor. +--- +key: 1 +--- +html: outreach.html +--- +body: diff --git a/content/outreach/speakers/contents.lr b/content/outreach/speakers/contents.lr new file mode 100644 index 0000000..111e26d --- /dev/null +++ b/content/outreach/speakers/contents.lr @@ -0,0 +1,17 @@ +section: outreach +--- +section_id: outreach +--- +color: primary +--- +_template: layout.html +--- +title: Tor Speakers Bureau +--- +subtitle: We have a dedicated group of Tor core contributors who are ready to speak at your next event. You can request a speaker by contacting speaking@torproject.org with your preferred topic, language requirement, date, and other details. +--- +key: 3 +--- +html: outreach.html +--- +body: diff --git a/content/outreach/talk/contents.lr b/content/outreach/talk/contents.lr new file mode 100644 index 0000000..6f84a6f --- /dev/null +++ b/content/outreach/talk/contents.lr @@ -0,0 +1,17 @@ +section: outreach +--- +section_id: outreach +--- +color: primary +--- +_template: layout.html +--- +title: Talk about Tor +--- +subtitle: Here you'll find materials on basic Tor explainers and concepts, ideas for preparing a Tor talk, suggested social media posts, and more. +--- +key: 2 +--- +html: outreach.html +--- +body: diff --git a/templates/outreach.html b/templates/outreach.html index e69de29..c414b95 100644 --- a/templates/outreach.html +++ b/templates/outreach.html @@ -0,0 +1,28 @@ +<div class="container py-5"> + <h2 class="text-primary">{{ _('Tell the world about Tor!') }}</h2> + <div class="row py-5"> + <div class="col-8"> + {{ this.body }} + </div> + <div class="col-4"> + </div> + </div> + <div class="row py-5"> + {% for child in this.children|sort(attribute='key') %} + <div class="col-sm-4 col-md-4 col-sm-12 col-xl-4 py-4"> + <div class="card h-100 border-0"> + <div class="card-body"> + <img class="card-img-top" src="{{ 'static/images/gray-image.png'|asseturl }}" alt="Card image cap"> + <div class="card-body"> + <h4 class="card-title text-primary">{{ child.title }}</h4> + <p class="card-text">{{ child.subtitle }}</p> + </div> + </div> + </div> + </div> + {% endfor %} + </div> + <div class="row py-5 text-center mx-auto"> + <h2 class="display-4 text-primary text-center mx-auto">{{ _('Upcoming Tor Events') }}</h2> + </div> +</div>
tor-commits@lists.torproject.org