From b240f3bb6f59ac705a101ab53a153dcdc7c3aa2a Mon Sep 17 00:00:00 2001 From: HackerNCoder Date: Thu, 15 Dec 2022 23:11:34 +0000 Subject: [PATCH] Start on join Signed-off-by: HackerNCoder --- content/join/contents.lr | 10 ++++++++++ models/join.ini | 16 ++++++++++++++++ templates/join.html | 28 ++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 content/join/contents.lr create mode 100644 models/join.ini create mode 100644 templates/join.html diff --git a/content/join/contents.lr b/content/join/contents.lr new file mode 100644 index 0000000..00d1141 --- /dev/null +++ b/content/join/contents.lr @@ -0,0 +1,10 @@ +_model: join +--- +ogpimage: /images/ogp.png +--- +getting-started: +While you may be thinking all about the actual translation, for collaborative project such as translating at the Queerscriptors, it is important to coordinate. So the first step is actually to join our [Discord](https://discord.gg/tzbXdkxWYF) or [Matrix](https://matrix.to/#/#queerscriptors:encryptionin.space). + +Once you are on either of those, you can proceed to create an account at our [Weblate](https://weblate.queerscriptors.org), this is the tool we use to translate. +--- +learn-tech: diff --git a/models/join.ini b/models/join.ini new file mode 100644 index 0000000..10d10b8 --- /dev/null +++ b/models/join.ini @@ -0,0 +1,16 @@ +[model] +name = join +label = {{ this.title }} +hidden = yes + +[fields.ogpimage] +type = string +translate = False + +[fields.getting-started] +type = markdown +translate = False + +[fields.learn-tech] +type = markdown +translate = False diff --git a/templates/join.html b/templates/join.html new file mode 100644 index 0000000..707cd4c --- /dev/null +++ b/templates/join.html @@ -0,0 +1,28 @@ +{% extends "layout.html" %} +{% block page %} +{% include 'header.html' %} + +
+
+

Join the Queerscriptors

+
+ +
+
+ {{_("Getting setup")}} +
+
+ {{ this.getting-started }} +
+
+ +
+
+ {{_("Learn the quirks"}} +
+
+ {{ this.learn-tech }} +
+
+
+{% endblock %}