From 22b4cff8a1c0821ddfa16ec27632833b779af35a Mon Sep 17 00:00:00 2001
From: Johan Hellsvik <38298744+johanhellsvik@users.noreply.github.com>
Date: Tue, 11 Jun 2024 20:11:41 +0200
Subject: [PATCH] Initial commit
---
.github/workflows/build.yml | 69 +++
.gitignore | 3 +
.gitmodules | 3 +
LICENSE | 396 ++++++++++++++++++
README.md | 54 +++
config.toml | 62 +++
content/_index.md | 61 +++
content/audience.md | 45 ++
content/certificates.md | 41 ++
content/code-of-conduct.md | 8 +
.../2024-03-01-team-leaders-without-groups.md | 27 ++
.../communication/2024-03-01-team-leaders.md | 69 +++
.../2024-03-05-practical-info.md | 40 ++
.../2024-03-10-practical-info2.md | 31 ++
.../2024-03-12-exercise-preparation.md | 24 ++
.../communication/2024-03-18-week2-prep.md | 36 ++
content/communication/_index.md | 17 +
content/communication/announcement-long.md | 22 +
content/communication/announcement-short.md | 14 +
content/exercises.md | 32 ++
content/how-to-join.png | Bin 0 -> 1792044 bytes
content/join.md | 133 ++++++
content/links.md | 14 +
content/logos/coderefinery.png | Bin 0 -> 40800 bytes
content/news.md | 6 +
content/questions/_index.md | 14 +
content/questions/day1.md | 7 +
content/registration.md | 17 +
content/requirements.md | 67 +++
content/schedule.yaml | 153 +++++++
sass/style.scss | 52 +++
static/Roboto.ttf | Bin 0 -> 129584 bytes
static/img/favicon.ico | Bin 0 -> 1150 bytes
templates/base.html | 61 +++
templates/emails.html | 32 ++
templates/footer.html | 48 +++
templates/index.html | 37 ++
templates/join.html | 22 +
templates/links.html | 2 +
templates/logos.html | 6 +
templates/macros.html | 53 +++
templates/navigation-logic.html | 43 ++
templates/navigation.html | 18 +
templates/news.html | 2 +
templates/page-with-toc.html | 14 +
templates/page.html | 10 +
templates/q-and-a.html | 17 +
templates/registration.html | 27 ++
templates/schedule.html | 65 +++
templates/section.html | 10 +
templates/shortcodes/div.html | 1 +
templates/shortcodes/enddiv.html | 1 +
templates/toc.html | 25 ++
templates/twitter.html | 26 ++
uikit | 1 +
update-uikit.sh | 18 +
56 files changed, 2056 insertions(+)
create mode 100644 .github/workflows/build.yml
create mode 100644 .gitignore
create mode 100644 .gitmodules
create mode 100644 LICENSE
create mode 100644 README.md
create mode 100644 config.toml
create mode 100644 content/_index.md
create mode 100644 content/audience.md
create mode 100644 content/certificates.md
create mode 100644 content/code-of-conduct.md
create mode 100644 content/communication/2024-03-01-team-leaders-without-groups.md
create mode 100644 content/communication/2024-03-01-team-leaders.md
create mode 100644 content/communication/2024-03-05-practical-info.md
create mode 100644 content/communication/2024-03-10-practical-info2.md
create mode 100644 content/communication/2024-03-12-exercise-preparation.md
create mode 100644 content/communication/2024-03-18-week2-prep.md
create mode 100644 content/communication/_index.md
create mode 100644 content/communication/announcement-long.md
create mode 100644 content/communication/announcement-short.md
create mode 100644 content/exercises.md
create mode 100644 content/how-to-join.png
create mode 100644 content/join.md
create mode 100644 content/links.md
create mode 100644 content/logos/coderefinery.png
create mode 100644 content/news.md
create mode 100644 content/questions/_index.md
create mode 100644 content/questions/day1.md
create mode 100644 content/registration.md
create mode 100644 content/requirements.md
create mode 100644 content/schedule.yaml
create mode 100644 sass/style.scss
create mode 100644 static/Roboto.ttf
create mode 100644 static/img/favicon.ico
create mode 100644 templates/base.html
create mode 100644 templates/emails.html
create mode 100644 templates/footer.html
create mode 100644 templates/index.html
create mode 100644 templates/join.html
create mode 100644 templates/links.html
create mode 100644 templates/logos.html
create mode 100644 templates/macros.html
create mode 100644 templates/navigation-logic.html
create mode 100644 templates/navigation.html
create mode 100644 templates/news.html
create mode 100644 templates/page-with-toc.html
create mode 100644 templates/page.html
create mode 100644 templates/q-and-a.html
create mode 100644 templates/registration.html
create mode 100644 templates/schedule.html
create mode 100644 templates/section.html
create mode 100644 templates/shortcodes/div.html
create mode 100644 templates/shortcodes/enddiv.html
create mode 100644 templates/toc.html
create mode 100644 templates/twitter.html
create mode 160000 uikit
create mode 100755 update-uikit.sh
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..a1e37e6
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,69 @@
+# Zola build workflow.
+
+# Prerequisites:
+# - zola writes output to public/
+# - variables below set correctly
+#
+# Setting it up:
+# It is a general limitation of gh-actions that they cannot make the very first
+# deploy to gh-pages. It will seem to work, but not appear on the CDN to be
+# online. You need to go to settings and set the gh-pages branch, then future
+# deploys will work. See
+# https://github.com/marketplace/actions/github-pages-action#%EF%B8%8F-first-deployment-with-github_token
+
+name: Build/deploy website
+
+env:
+ ZOLA_VERSION: "0.17.2"
+ MAIN_BRANCH: "main"
+ TARGET_BRANCH: "gh-pages"
+# CNAME: "example.org"
+
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+ branches:
+ - main
+
+permissions:
+ contents: write
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository and submodules
+ uses: actions/checkout@v4
+ with:
+ submodules: recursive
+ - name: Install zola
+ run: |
+ set -x
+ wget -O - \
+ "https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz" \
+ | sudo tar xzf - -C /usr/local/bin
+ - name: Generate HTML
+ run: zola build
+ # Add CNAME, either (first one used)
+ # - file in the root
+ # - the environment variable set above
+ - name: add CNAME
+ run: |
+ if [ -f CNAME ] ; then
+ mv CNAME public/
+ echo "Copied CNAME from repository root"
+ exit 0
+ fi
+ if [ -n ${{ env.CNAME }} ] ; then
+ echo -n ${{ env.CNAME }} > public/CNAME
+ echo "Used CNAME from the action workflow file"
+ fi
+ - name: Deploy to gh-pages
+ if: ${{ github.event_name == 'push' && github.ref == format('refs/heads/{0}', env.MAIN_BRANCH) }}
+ uses: peaceiris/actions-gh-pages@v3
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: ./public
+ force_orphan: true
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..13e1d49
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+*~
+public/
+static/processed_images/
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..c88ea2d
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "uikit"]
+ path = uikit
+ url = git@github.com:uikit/uikit.git
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..da6ab6c
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,396 @@
+Attribution 4.0 International
+
+=======================================================================
+
+Creative Commons Corporation ("Creative Commons") is not a law firm and
+does not provide legal services or legal advice. Distribution of
+Creative Commons public licenses does not create a lawyer-client or
+other relationship. Creative Commons makes its licenses and related
+information available on an "as-is" basis. Creative Commons gives no
+warranties regarding its licenses, any material licensed under their
+terms and conditions, or any related information. Creative Commons
+disclaims all liability for damages resulting from their use to the
+fullest extent possible.
+
+Using Creative Commons Public Licenses
+
+Creative Commons public licenses provide a standard set of terms and
+conditions that creators and other rights holders may use to share
+original works of authorship and other material subject to copyright
+and certain other rights specified in the public license below. The
+following considerations are for informational purposes only, are not
+exhaustive, and do not form part of our licenses.
+
+ Considerations for licensors: Our public licenses are
+ intended for use by those authorized to give the public
+ permission to use material in ways otherwise restricted by
+ copyright and certain other rights. Our licenses are
+ irrevocable. Licensors should read and understand the terms
+ and conditions of the license they choose before applying it.
+ Licensors should also secure all rights necessary before
+ applying our licenses so that the public can reuse the
+ material as expected. Licensors should clearly mark any
+ material not subject to the license. This includes other CC-
+ licensed material, or material used under an exception or
+ limitation to copyright. More considerations for licensors:
+ wiki.creativecommons.org/Considerations_for_licensors
+
+ Considerations for the public: By using one of our public
+ licenses, a licensor grants the public permission to use the
+ licensed material under specified terms and conditions. If
+ the licensor's permission is not necessary for any reason--for
+ example, because of any applicable exception or limitation to
+ copyright--then that use is not regulated by the license. Our
+ licenses grant only permissions under copyright and certain
+ other rights that a licensor has authority to grant. Use of
+ the licensed material may still be restricted for other
+ reasons, including because others have copyright or other
+ rights in the material. A licensor may make special requests,
+ such as asking that all changes be marked or described.
+ Although not required by our licenses, you are encouraged to
+ respect those requests where reasonable. More considerations
+ for the public:
+ wiki.creativecommons.org/Considerations_for_licensees
+
+=======================================================================
+
+Creative Commons Attribution 4.0 International Public License
+
+By exercising the Licensed Rights (defined below), You accept and agree
+to be bound by the terms and conditions of this Creative Commons
+Attribution 4.0 International Public License ("Public License"). To the
+extent this Public License may be interpreted as a contract, You are
+granted the Licensed Rights in consideration of Your acceptance of
+these terms and conditions, and the Licensor grants You such rights in
+consideration of benefits the Licensor receives from making the
+Licensed Material available under these terms and conditions.
+
+
+Section 1 -- Definitions.
+
+ a. Adapted Material means material subject to Copyright and Similar
+ Rights that is derived from or based upon the Licensed Material
+ and in which the Licensed Material is translated, altered,
+ arranged, transformed, or otherwise modified in a manner requiring
+ permission under the Copyright and Similar Rights held by the
+ Licensor. For purposes of this Public License, where the Licensed
+ Material is a musical work, performance, or sound recording,
+ Adapted Material is always produced where the Licensed Material is
+ synched in timed relation with a moving image.
+
+ b. Adapter's License means the license You apply to Your Copyright
+ and Similar Rights in Your contributions to Adapted Material in
+ accordance with the terms and conditions of this Public License.
+
+ c. Copyright and Similar Rights means copyright and/or similar rights
+ closely related to copyright including, without limitation,
+ performance, broadcast, sound recording, and Sui Generis Database
+ Rights, without regard to how the rights are labeled or
+ categorized. For purposes of this Public License, the rights
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
+ Rights.
+
+ d. Effective Technological Measures means those measures that, in the
+ absence of proper authority, may not be circumvented under laws
+ fulfilling obligations under Article 11 of the WIPO Copyright
+ Treaty adopted on December 20, 1996, and/or similar international
+ agreements.
+
+ e. Exceptions and Limitations means fair use, fair dealing, and/or
+ any other exception or limitation to Copyright and Similar Rights
+ that applies to Your use of the Licensed Material.
+
+ f. Licensed Material means the artistic or literary work, database,
+ or other material to which the Licensor applied this Public
+ License.
+
+ g. Licensed Rights means the rights granted to You subject to the
+ terms and conditions of this Public License, which are limited to
+ all Copyright and Similar Rights that apply to Your use of the
+ Licensed Material and that the Licensor has authority to license.
+
+ h. Licensor means the individual(s) or entity(ies) granting rights
+ under this Public License.
+
+ i. Share means to provide material to the public by any means or
+ process that requires permission under the Licensed Rights, such
+ as reproduction, public display, public performance, distribution,
+ dissemination, communication, or importation, and to make material
+ available to the public including in ways that members of the
+ public may access the material from a place and at a time
+ individually chosen by them.
+
+ j. Sui Generis Database Rights means rights other than copyright
+ resulting from Directive 96/9/EC of the European Parliament and of
+ the Council of 11 March 1996 on the legal protection of databases,
+ as amended and/or succeeded, as well as other essentially
+ equivalent rights anywhere in the world.
+
+ k. You means the individual or entity exercising the Licensed Rights
+ under this Public License. Your has a corresponding meaning.
+
+
+Section 2 -- Scope.
+
+ a. License grant.
+
+ 1. Subject to the terms and conditions of this Public License,
+ the Licensor hereby grants You a worldwide, royalty-free,
+ non-sublicensable, non-exclusive, irrevocable license to
+ exercise the Licensed Rights in the Licensed Material to:
+
+ a. reproduce and Share the Licensed Material, in whole or
+ in part; and
+
+ b. produce, reproduce, and Share Adapted Material.
+
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
+ Exceptions and Limitations apply to Your use, this Public
+ License does not apply, and You do not need to comply with
+ its terms and conditions.
+
+ 3. Term. The term of this Public License is specified in Section
+ 6(a).
+
+ 4. Media and formats; technical modifications allowed. The
+ Licensor authorizes You to exercise the Licensed Rights in
+ all media and formats whether now known or hereafter created,
+ and to make technical modifications necessary to do so. The
+ Licensor waives and/or agrees not to assert any right or
+ authority to forbid You from making technical modifications
+ necessary to exercise the Licensed Rights, including
+ technical modifications necessary to circumvent Effective
+ Technological Measures. For purposes of this Public License,
+ simply making modifications authorized by this Section 2(a)
+ (4) never produces Adapted Material.
+
+ 5. Downstream recipients.
+
+ a. Offer from the Licensor -- Licensed Material. Every
+ recipient of the Licensed Material automatically
+ receives an offer from the Licensor to exercise the
+ Licensed Rights under the terms and conditions of this
+ Public License.
+
+ b. No downstream restrictions. You may not offer or impose
+ any additional or different terms or conditions on, or
+ apply any Effective Technological Measures to, the
+ Licensed Material if doing so restricts exercise of the
+ Licensed Rights by any recipient of the Licensed
+ Material.
+
+ 6. No endorsement. Nothing in this Public License constitutes or
+ may be construed as permission to assert or imply that You
+ are, or that Your use of the Licensed Material is, connected
+ with, or sponsored, endorsed, or granted official status by,
+ the Licensor or others designated to receive attribution as
+ provided in Section 3(a)(1)(A)(i).
+
+ b. Other rights.
+
+ 1. Moral rights, such as the right of integrity, are not
+ licensed under this Public License, nor are publicity,
+ privacy, and/or other similar personality rights; however, to
+ the extent possible, the Licensor waives and/or agrees not to
+ assert any such rights held by the Licensor to the limited
+ extent necessary to allow You to exercise the Licensed
+ Rights, but not otherwise.
+
+ 2. Patent and trademark rights are not licensed under this
+ Public License.
+
+ 3. To the extent possible, the Licensor waives any right to
+ collect royalties from You for the exercise of the Licensed
+ Rights, whether directly or through a collecting society
+ under any voluntary or waivable statutory or compulsory
+ licensing scheme. In all other cases the Licensor expressly
+ reserves any right to collect such royalties.
+
+
+Section 3 -- License Conditions.
+
+Your exercise of the Licensed Rights is expressly made subject to the
+following conditions.
+
+ a. Attribution.
+
+ 1. If You Share the Licensed Material (including in modified
+ form), You must:
+
+ a. retain the following if it is supplied by the Licensor
+ with the Licensed Material:
+
+ i. identification of the creator(s) of the Licensed
+ Material and any others designated to receive
+ attribution, in any reasonable manner requested by
+ the Licensor (including by pseudonym if
+ designated);
+
+ ii. a copyright notice;
+
+ iii. a notice that refers to this Public License;
+
+ iv. a notice that refers to the disclaimer of
+ warranties;
+
+ v. a URI or hyperlink to the Licensed Material to the
+ extent reasonably practicable;
+
+ b. indicate if You modified the Licensed Material and
+ retain an indication of any previous modifications; and
+
+ c. indicate the Licensed Material is licensed under this
+ Public License, and include the text of, or the URI or
+ hyperlink to, this Public License.
+
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
+ reasonable manner based on the medium, means, and context in
+ which You Share the Licensed Material. For example, it may be
+ reasonable to satisfy the conditions by providing a URI or
+ hyperlink to a resource that includes the required
+ information.
+
+ 3. If requested by the Licensor, You must remove any of the
+ information required by Section 3(a)(1)(A) to the extent
+ reasonably practicable.
+
+ 4. If You Share Adapted Material You produce, the Adapter's
+ License You apply must not prevent recipients of the Adapted
+ Material from complying with this Public License.
+
+
+Section 4 -- Sui Generis Database Rights.
+
+Where the Licensed Rights include Sui Generis Database Rights that
+apply to Your use of the Licensed Material:
+
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
+ to extract, reuse, reproduce, and Share all or a substantial
+ portion of the contents of the database;
+
+ b. if You include all or a substantial portion of the database
+ contents in a database in which You have Sui Generis Database
+ Rights, then the database in which You have Sui Generis Database
+ Rights (but not its individual contents) is Adapted Material; and
+
+ c. You must comply with the conditions in Section 3(a) if You Share
+ all or a substantial portion of the contents of the database.
+
+For the avoidance of doubt, this Section 4 supplements and does not
+replace Your obligations under this Public License where the Licensed
+Rights include other Copyright and Similar Rights.
+
+
+Section 5 -- Disclaimer of Warranties and Limitation of Liability.
+
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
+
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
+
+ c. The disclaimer of warranties and limitation of liability provided
+ above shall be interpreted in a manner that, to the extent
+ possible, most closely approximates an absolute disclaimer and
+ waiver of all liability.
+
+
+Section 6 -- Term and Termination.
+
+ a. This Public License applies for the term of the Copyright and
+ Similar Rights licensed here. However, if You fail to comply with
+ this Public License, then Your rights under this Public License
+ terminate automatically.
+
+ b. Where Your right to use the Licensed Material has terminated under
+ Section 6(a), it reinstates:
+
+ 1. automatically as of the date the violation is cured, provided
+ it is cured within 30 days of Your discovery of the
+ violation; or
+
+ 2. upon express reinstatement by the Licensor.
+
+ For the avoidance of doubt, this Section 6(b) does not affect any
+ right the Licensor may have to seek remedies for Your violations
+ of this Public License.
+
+ c. For the avoidance of doubt, the Licensor may also offer the
+ Licensed Material under separate terms or conditions or stop
+ distributing the Licensed Material at any time; however, doing so
+ will not terminate this Public License.
+
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
+ License.
+
+
+Section 7 -- Other Terms and Conditions.
+
+ a. The Licensor shall not be bound by any additional or different
+ terms or conditions communicated by You unless expressly agreed.
+
+ b. Any arrangements, understandings, or agreements regarding the
+ Licensed Material not stated herein are separate from and
+ independent of the terms and conditions of this Public License.
+
+
+Section 8 -- Interpretation.
+
+ a. For the avoidance of doubt, this Public License does not, and
+ shall not be interpreted to, reduce, limit, restrict, or impose
+ conditions on any use of the Licensed Material that could lawfully
+ be made without permission under this Public License.
+
+ b. To the extent possible, if any provision of this Public License is
+ deemed unenforceable, it shall be automatically reformed to the
+ minimum extent necessary to make it enforceable. If the provision
+ cannot be reformed, it shall be severed from this Public License
+ without affecting the enforceability of the remaining terms and
+ conditions.
+
+ c. No term or condition of this Public License will be waived and no
+ failure to comply consented to unless expressly agreed to by the
+ Licensor.
+
+ d. Nothing in this Public License constitutes or may be interpreted
+ as a limitation upon, or waiver of, any privileges and immunities
+ that apply to the Licensor or You, including from the legal
+ processes of any jurisdiction or authority.
+
+
+=======================================================================
+
+Creative Commons is not a party to its public
+licenses. Notwithstanding, Creative Commons may elect to apply one of
+its public licenses to material it publishes and in those instances
+will be considered the “Licensor.” The text of the Creative Commons
+public licenses is dedicated to the public domain under the CC0 Public
+Domain Dedication. Except for the limited purpose of indicating that
+material is shared under a Creative Commons public license or as
+otherwise permitted by the Creative Commons policies published at
+creativecommons.org/policies, Creative Commons does not authorize the
+use of the trademark "Creative Commons" or any other trademark or logo
+of Creative Commons without its prior written consent including,
+without limitation, in connection with any unauthorized modifications
+to any of its public licenses or any other arrangements,
+understandings, or agreements concerning use of licensed material. For
+the avoidance of doubt, this paragraph does not form part of the
+public licenses.
+
+Creative Commons may be contacted at creativecommons.org.
+
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..11d4868
--- /dev/null
+++ b/README.md
@@ -0,0 +1,54 @@
+# CodeRefinery workshop webpage
+
+This repository is a template to set up webpages for CodeRefinery
+workshops.
+
+
+## Quick reference
+
+- (here collect all essential links for planning)
+
+
+## How to generate your workshop repository
+
+To use it, follow these instructions:
+- Click the green "Use this template" button.
+- Select owner of the new repository and repository name. The name should look like
+ `2019-10-16-workshop`. For in-person workshops we use
+ "year-month-date-place" (e.g. `2019-10-16-stockholm`).
+- Click "Create repository from template".
+- You will now be redirected to the new repository.
+- On "Settings" enable "GitHub Pages" from `gh-pages` as "Source".
+- Add the link to the generated pages on top right of the repository page at
+ "About" to make it easier to find.
+- Link the workshop from .
+
+
+### How to customize this template after you have created the repository
+
+- Adapt `config.toml`:
+ - adapt `base_url` (it should contain a trailing slash)
+ - adapt `title`
+ - adapt settings below `[extra]`
+- Adapt schedule in `content/schedule.yaml`. Use times in UTC. The times and
+ dates are automatically displayed in the local time zone of the browser.
+
+
+### How this template works
+
+This template is based on the [Zola](https://www.getzola.org/) static site engine.
+
+To install Zola, follow:
+- https://www.getzola.org/documentation/getting-started/installation/
+- https://snapcraft.io/zola can be used for system that are not supported by default
+- But you can also download the binary directly from [here](https://github.com/getzola/zola/releases)
+
+Check that Zola is installed with `$ zola --version`.
+
+
+### Local preview
+
+```
+$ zola serve --open
+```
+This will open in your default browser a rendered version of the template.
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..227f876
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,62 @@
+# The URL the site will be built for
+
+# this variable has to be set but it is not used
+# inside the templates (end in '/')
+base_url = "https://coderefinery.github.io/template-workshop-webpage/"
+
+# When adapting the title, do not forget to also adjust base_url above
+title = "Replace this title in config.toml"
+description = "Free workshop on git, testing, documentation, and more in a workshop - for researchers and scientists."
+
+# Whether to automatically compile all Sass files in the sass directory
+compile_sass = true
+
+# Whether to build a search index to be used later on by a JavaScript library
+build_search_index = false
+
+[markdown]
+# Whether to do syntax highlighting
+# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
+highlight_code = true
+highlight_theme = "cheerfully-light"
+
+# Whether external links are to be opened in a new tab
+external_links_target_blank = true
+
+[extra]
+
+navigation = [
+ { name = "About", target = "" },
+ { name = "List of exercises", target = "exercises/" },
+ { name = "Audience", target = "audience/" },
+ { name = "Certificates", target = "certificates/" },
+ { name = "How to join", target = "join/" },
+ { name = "Requirements", target = "requirements/" },
+ { name = "Q&A", target = "questions/" },
+ { name = "Code of conduct", target = "code-of-conduct/" },
+ { name = "Communication", target = "communication/" }
+]
+
+twitter_image = "https://raw.githubusercontent.com/coderefinery/coderefinery-artwork/main/socialshare/socialshare-workshop.png"
+
+# plausible.io analytics
+plausible = { src = "https://plausible.cs.aalto.fi/js/script.js", domain = "coderefinery.github.io", github_ref = "refs/heads/main" }
+
+
+# you can place multiple logos like this
+# the image file(s) need to be placed in content/logos
+logos = [
+# { alt_text = "CodeRefinery logo", target_url = "https://coderefinery.org/", image = "coderefinery.png" },
+ { alt_text = "CodeRefinery logo", target_url = "https://coderefinery.org/", image = "coderefinery.png" }
+]
+
+# adapt this
+registration_link = "https://example.org"
+source_repo = "https://github.com/coderefinery/template-workshop-webpage"
+how_to_join_video = "https://youtu.be/QUAZELOioUY"
+
+# uncomment as soon as registration opens
+# registration_is_open = true
+
+# uncomment as soon as registration closes
+# registration_is_closed = true
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..acc36a3
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,61 @@
++++
+title = "Schedule"
++++
+
+## Be a team leader
+
+Do you know some of the topics, but want to review them?
+Do you wish your colleagues or friends would use these tools?
+Why not [attend as a team leader](@/join.md)?
+Gather some friends who want to learn the topics and follow the workshop together.
+You don't need to be an expert: if you have been through CodeRefinery once or have some familiarity
+with the topics, and you are confident to call an expert helper when needed,
+then you have all it takes to lead a team to success,
+or lead even more people and join as an organization (see below).
+
+
+## Partners and local exercise groups
+
+Some partners offer local support, such as breakout rooms, to their local
+teams. You can [become a partner](https://coderefinery.org/about/partners/) to
+support your community!
+
+We collect here the exercise groups that we know:
+- [**Aalto University**](https://scicomp.aalto.fi/):
+ - Local in-person exercise session and local support.
+ - Possibility of [credit points](@/certificates.md) to those in Finland.
+
+
+## Instructors
+
+- ...
+
+
+## Workshop organizers
+
+- ...
+
+
+## On-boarding
+
+- ...
+
+
+## Outreach
+
+- ...
+
+
+## Recording and broadcasting
+
+- ...
+
+
+## Local organizers
+
+- ...
+
+
+## Collaborative notes editors
+
+- ...
diff --git a/content/audience.md b/content/audience.md
new file mode 100644
index 0000000..faf4594
--- /dev/null
+++ b/content/audience.md
@@ -0,0 +1,45 @@
++++
+title = "Course goals and audience"
++++
+
+
+## Course goals
+
+In this course, you will become familiar with tools and best practices for
+scientific software development. This course will not teach a programming
+language, but we teach the tools you need to do programming well and avoid
+common inefficiency traps. The tools we teach are practically a requirement for
+any scientist who needs to write code. The main focus is on using
+Git for efficiently writing and maintaining research software.
+
+
+## Audience
+
+Do you identify with any of these below, then this course is for you:
+
+
+
+- You write scripts to process data.
+- You change scripts written by your colleagues.
+- You write code that is used in research by you or others.
+- You wish you could re-run your own code after a few months.
+- You wish you could reproduce your own results better.
+- You wish you could automate your work better.
+- You, or your group, can't share or reuse code.
+- You want to become more efficient at your work overall, by using the
+ best possible tools.
+
+
+
+This course is not designed for "professional software engineers" or to make
+you one. You can register with your friends/group as a team and you'll
+work together in exercise rooms, and you'll be able to work together after the
+course as well.
+
+
+## What we will not teach
+
+This is not a course about a specific programming language or the Linux/Unix
+terminal shell. We assume that you are somehow familiar with the programming
+language that you use in your work and research. Most of the course applies to
+any programming language.
diff --git a/content/certificates.md b/content/certificates.md
new file mode 100644
index 0000000..0cc9feb
--- /dev/null
+++ b/content/certificates.md
@@ -0,0 +1,41 @@
++++
+title = "Certificates and credits"
++++
+
+## Certificates and credits
+
+It is possible to obtain a certificate from the course with a little extra
+work. The certificate is equivalent to 1 ECTS and your study supervisor will
+be able to register it as a credit in your university study credit system.
+**Please make sure that your supervisor/study program accepts it**.
+
+Learners with a valid Aalto student number will automatically get the credit
+registered in Aalto systems. Please note that this does not apply to
+participants affiliated with TU Delft or other universities who have own
+criteria for workshop certificates and credits.
+
+To obtain a certificate, you must be affiliated with a university, or similar
+research organisation. We expect you to **follow the 6 days** of the course and
+provide us with the following **three text documents sent from your university email**:
+
+1. A document that shows that you did the exercises during the course. *Note: if you are planning to delete the exercise repository from your GitHub projects, instead of sending links to your work you can send PDF screenshots e.g. by doing "print to PDF" with your browser.*
+ - Write one or more paragraphs about [Day 1 - Exercise 2](https://coderefinery.github.io/git-intro/commits/#exercise): provide the link to the forked repository on your GitHub account and show that you did new commits. If you did not use GitHub and if you used the command line, then provide the output of the command `git log --all` for the forked repository. Explain what you did.
+ - Write one or more paragraphs about [Day 2 - Exercise 3](https://coderefinery.github.io/git-intro/sharing/#exercise): provide the link to the new repository you have created on your GitHub account. If you did not use GitHub and if you used the command line, then provide the output of the command `git log --all` for the newly created repository. Explain what you did.
+ - Write one or more paragraphs about [Day 3 - Exercise 1](https://coderefinery.github.io/git-collaborative/same-repository/#exercise): provide the link to the pull request. Explain what you did.
+2. Written answers to the following four questions submitted as a document (pdf
+ or word or txt). Evaluation criteria: we expect critical answers related to
+ the content of first 3 days with both pros and cons (when relevant):
+ - When should you work with branches?
+ - What is the difference between a `git clone` and a `git fork`?
+ - What is the difference between a fork and a branch?
+ - What advantages and disadvantages to code review can you imagine/list?
+3. A personal reflection for each of the 6 days written as a document (pdf or
+ word or txt, one paragraph per day). To get started, you can try answering
+ the questions: "Why is this important? How can it improve my research work?"
+ However any other personal reflection is welcome. Evaluation criteria: we
+ expect reflections that are related to the content of each of the six days.
+
+During the workshop we will provide with contact addresses where you should
+send these documents to.
+
+As this is a very simple homework, the use of generative AI (like ChatGPT) is not allowed. We also have access to ChatGPT and we know how to write prompts that can generate the answers to these homework, so it is very easy for us to check when AI was used. Submissions suspected of being generated by AI will be rejected.
diff --git a/content/code-of-conduct.md b/content/code-of-conduct.md
new file mode 100644
index 0000000..86d7873
--- /dev/null
+++ b/content/code-of-conduct.md
@@ -0,0 +1,8 @@
++++
+title = "Code of conduct"
++++
+
+## Code of conduct
+
+For our workshops and events we use the code of conduct published on our [project
+website](https://coderefinery.org/about/code-of-conduct/).
diff --git a/content/communication/2024-03-01-team-leaders-without-groups.md b/content/communication/2024-03-01-team-leaders-without-groups.md
new file mode 100644
index 0000000..7bab306
--- /dev/null
+++ b/content/communication/2024-03-01-team-leaders-without-groups.md
@@ -0,0 +1,27 @@
++++
+title = "2024-03-01 Practical info for team leaders without own groups"
+[extra]
+subject = "CodeRefinery workshop: practical info for team leaders"
++++
+
+Dear all,
+
+You have indicated that you might want to help out as team leader but don't have a team yet.
+Thank you for your interest in helping the CodeRefinery to become an educational experience for everyone!
+
+This time, we do not provide a central exercise Zoom for learners and team leaders without own groups.
+However, you can still support the workshop and here are few options:
+
+- Be available for questions. During the workshop we will use a collaborative document for asynchronous Q&A, you can help by answering questions there and keeping things organized.
+- Gather colleagues and organize a (virtual) room to watch the workshop stream together and discuss the exercises of week 1. You can also organize additional exercise or help sessions around the workshop.
+- Advertise the workshop in your networks. Let us know if we can help by providing texts or so.
+
+In any case you are welcome to attend our team leader onboarding session, to get to know about the different options:
+- Zoom link: (URL)
+- Schedule: https://coderefinery.github.io/2024-03-12-workshop/#schedule
+
+If you have any questions, please write to me or support@coderefinery.org.
+
+Thank you,
+
+Radovan and the CodeRefinery team
diff --git a/content/communication/2024-03-01-team-leaders.md b/content/communication/2024-03-01-team-leaders.md
new file mode 100644
index 0000000..0262662
--- /dev/null
+++ b/content/communication/2024-03-01-team-leaders.md
@@ -0,0 +1,69 @@
++++
+title = "2024-03-01 Practical info for team leaders and local organizers"
+[extra]
+subject = "CodeRefinery workshop: practical info for team leaders and local organizers"
++++
+
+Dear all,
+
+
+**Summary**
+
+Thanks for being a team leader/ local organizer!
+
+Please join one of our onboarding sessions about being a team leader:
+- Zoom link: (URL)
+- Schedule: https://coderefinery.github.io/2024-03-12-workshop/#schedule
+
+We are working on simplifying install instructions (please wait with those).
+
+We plan to send an email to all registrants next week Tuesday.
+
+The are currently reworking the Git lessons for week 1 to reflect more how people work with Git today.
+
+
+**Thank you**
+
+First of all: Thanks so much for doing this! It's the teams and team leaders that make this workshop really work. We really appreciate!
+
+
+**What to expect**
+
+Expect a dynamic, exciting first week with lots of hands-on activities. Week 2 will be calmer, as we try a new route, providing exercise walk-throughs on stream and leaving it up to groups and individuals to play around on their own time. We suggest to meet in teams for week 1. If your group prefers to go through week 2 exercises, then we recommend to schedule your own sessions for that.
+
+
+**How to prepare to lead a team**
+
+Some hints on being a team leader
+
+Do you want to be active or to be around?
+
+- If active: You'll need to take the lead in discussions. You don't have to discuss the active material: you could make the discussions about your own work (our material will be there later anyway).
+- If "be around": During exercise sessions and other times, you can ask how it's going and take questions there. If it's too quiet, ask someone to screen-share and everyone else to say what to do.
+
+Be kind and considerate to everyone. Not everyone has to learn or do the same things. Don't make people feel bad for not doing as much as others, it's only natural!
+
+Don't worry! Take the first day to see how it works and then adapt based on what your group would like.
+
+It can be very hard to get people to talk sometimes. You can try this: Ask someone to screen-share (or you can). The person screen-sharing doesn't figure out what to do, but others tell them what to do. You can even make any exercises group-based this way.
+
+If you meet in-person and have a large screen to share: Twitch stream on one half, Notes on the other half.
+
+
+**Onboarding session**
+
+We provide 4 sessions for onboarding of team leaders next week. Please join one of them to learn about the workshop format and ask any questions you may have. The zoom link is the on top of the email.
+
+
+**Materials to read**
+
+One-page summary with tips and tricks: https://coderefinery.github.io/manuals/team-leaders/
+
+
+**Questions?**
+
+If you have any questions, please write to support@coderefinery.org.
+
+Thank you,
+
+Radovan and the CodeRefinery team
diff --git a/content/communication/2024-03-05-practical-info.md b/content/communication/2024-03-05-practical-info.md
new file mode 100644
index 0000000..01da5b7
--- /dev/null
+++ b/content/communication/2024-03-05-practical-info.md
@@ -0,0 +1,40 @@
++++
+title = "2024-03-05 Practical information one week before the workshop"
+[extra]
+subject = "[CodeRefinery workshop] practical information"
++++
+
+Dear {first_name},
+
+We are one week away from the CodeRefinery workshop. Exciting!
+
+Everybody, please install required software before the workshop (we made it a lot easier this time):
+- https://coderefinery.github.io/installation/
+- We offer two install help sessions (today and in two days; Tue and Thu): (URL shared with registrants)
+- Schedule in your time zone: https://coderefinery.github.io/2024-03-12-workshop/#schedule
+
+If you are a team leader or organize a local classroom, please come to one of our on-boarding sessions:
+- https://coderefinery.github.io/2024-03-12-workshop/#schedule
+- Zoom link for on-boarding sessions: (URL shared with registrants)
+
+
+**For all workshop participants**, here are all relevant resources that you need to connect:
+
+You can follow the workshop lectures via Twitch in a web browser, no account needed:
+- https://twitch.tv/coderefinery
+
+Please use this collaborative document to ask questions during the workshop:
+- (URL shared with registrants)
+
+Schedule and lecture material:
+- https://coderefinery.github.io/2024-03-12-workshop/#schedule
+- Each day we will take a break for lunch, which we have done our best to schedule at a time that will work for most locations as we are across multiple time zones.
+- We are still working on updating the Git lessons. This time we plan to work more in the browser and editor and less in the terminal.
+
+
+If you have any questions, please write to support@coderefinery.org or reply to me.
+
+
+Best regards,
+
+Radovan and the CodeRefinery team
diff --git a/content/communication/2024-03-10-practical-info2.md b/content/communication/2024-03-10-practical-info2.md
new file mode 100644
index 0000000..f2ae94a
--- /dev/null
+++ b/content/communication/2024-03-10-practical-info2.md
@@ -0,0 +1,31 @@
++++
+title = "2024-03-10 Practical information one day before the workshop"
+[extra]
+subject = "[CodeRefinery workshop] practical information"
++++
+
+Dear {first_name},
+
+The CodeRefinery workshop starts on Tuesday!
+
+We expect a dynamic and exciting workshop and very much look forward to it.
+Below are all relevant resources that you need to connect.
+
+You can follow the workshop lectures via Twitch in a web browser, no account needed:
+- https://twitch.tv/coderefinery
+
+Please use this collaborative document to ask questions during the workshop:
+- (URL shared with registrants)
+
+Schedule and lecture material:
+- https://coderefinery.github.io/2024-03-12-workshop/#schedule (in your local time zone)
+- Each day we will take a break for lunch, which we have done our best to schedule at a time that will work for most locations as we are across multiple time zones.
+
+Please install required software before the workshop:
+- https://coderefinery.github.io/installation/
+
+If you have any questions, please write to support@coderefinery.org or reply to me.
+
+Best regards,
+
+Radovan and the CodeRefinery team
diff --git a/content/communication/2024-03-12-exercise-preparation.md b/content/communication/2024-03-12-exercise-preparation.md
new file mode 100644
index 0000000..17f9198
--- /dev/null
+++ b/content/communication/2024-03-12-exercise-preparation.md
@@ -0,0 +1,24 @@
++++
+title = "2024-03-12 Exercise preparation for learners without own group"
+[extra]
+subject = "[CodeRefinery workshop] preparation for Thursday for leaners without own group"
++++
+
+Dear {first_name},
+
+This email is only relevant if you plan to participate in the CodeRefinery workshop this Thursday as individual learner and are not part of a team or a local exercise group.
+
+On Thursday we will all practice how to collaborate using Git/GitHub and one ambitious thing we will try is to collaborate with participants following via stream.
+
+If you would like to participate as individual learner in the collaborative exercises, please request access by opening an issue at https://github.com/cr-workshop-exercises/access-requests/issues/new/choose (There click "Get started" -> "Submit new issue")
+
+This way we will know your GitHub username and give you write access to exercise repositories.
+
+After we add you as collaborator, you will get an email from GitHub.
+- Please accept the invitation
+- Don't forget to "unwatch" both https://github.com/cr-workshop-exercises/centralized-workflow-exercise and https://github.com/cr-workshop-exercises/centralized-workflow-exercise-recorded to make sure you don't get too many emails during the exercise.
+- To "unwatch", go to the repository and click the "Unwatch" button (top middle of the screen) and then select "Participating and @mentions".
+
+Best regards,
+
+Radovan and the CodeRefinery team
diff --git a/content/communication/2024-03-18-week2-prep.md b/content/communication/2024-03-18-week2-prep.md
new file mode 100644
index 0000000..ab4bbb6
--- /dev/null
+++ b/content/communication/2024-03-18-week2-prep.md
@@ -0,0 +1,36 @@
++++
+title = "2024-03-18 Welcome to week 2"
+[extra]
+subject = "[CodeRefinery workshop] welcome to week 2"
++++
+
+Dear {first_name},
+
+Thank you for joining the workshop last week, and for all the wonderful questions we got from you!
+For those who join us now for the second week only, welcome!
+- All questions and answers are archived: https://coderefinery.github.io/2024-03-12-workshop/questions/
+- Video recordings are published: https://www.youtube.com/watch?v=9eUUd40HkYI&list=PLpLblYHCzJADIsbUhXSrC0qW5wDsH-F9U
+
+We hope you got some good practice and understanding on how to collaborate using Git/GitHub and our trial of collaborating with you from the stream worked out for you! If you have suggestions on how to improve our lessons, please open issues or send pull requests:
+- https://github.com/coderefinery/git-intro
+- https://github.com/coderefinery/git-collaborative
+
+
+This week will be a little more diverse!
+
+We will take a peek into six topics that are all related to FAIR research software development:
+
+Tuesday will start with an overview of how all CodeRefinery lessons fit together under the umbrella of reproducible research and what steps you can take now already to make your research more reproducible. In the afternoon we will look into licenses, how they work and why you might want to care even when "only writing a small script for myself".
+
+Wednesday morning we look at different ways of how to document research code. From small projects with good README files to external documentation on Read the Docs. In the afternoon we will show some tips and tricks around Jupyter notebooks and how they can be used also outside of courses.
+
+Thursday we step a little deeper into software development practices by giving you an introduction into automated testing and how this could benefit you and your collaborators. The workshop ends with some live coding to showcase how to make code more reusable by caring about modularity.
+
+In contrast to week 1, there will not be any dedicated exercise times in week 2. Instead, instructors will demo things and discuss with you using the collaborative document. If you want, you can of course try to follow the demos or try to do them on your own time after the workshop. For this, you will need to install some tools which you can find at: https://coderefinery.github.io/installation/.
+
+We hope to see you again this week with the first session starting Tuesday at 9:00 CET (10 EET). We will start the stream 10 minutes earlier: https://coderefinery.github.io/2024-03-12-workshop/#schedule
+
+
+Best regards,
+
+CodeRefinery team
diff --git a/content/communication/_index.md b/content/communication/_index.md
new file mode 100644
index 0000000..ad23961
--- /dev/null
+++ b/content/communication/_index.md
@@ -0,0 +1,17 @@
++++
+title = "Communication with participants"
+template = "emails.html"
++++
+
+## Communication with participants
+
+Here we collect email texts which we have sent to participants. They are
+hopefully useful for late registrations or future workshops.
+
+
+
+
+ If you registered late and cannot find the link to the Q&A document, can
+ you please contact us (bottom of page)?
+
+
diff --git a/content/communication/announcement-long.md b/content/communication/announcement-long.md
new file mode 100644
index 0000000..1c9567c
--- /dev/null
+++ b/content/communication/announcement-long.md
@@ -0,0 +1,22 @@
++++
+title = "Workshop announcement example (longer version)"
+[extra]
+subject = "CodeRefinery workshop announcement"
++++
+
+Are you writing code and managing data for your research? Do you feel like
+wasting too much time on manual work? Do you struggle to understand and reuse older code?
+
+Join
+the CodeRefinery workshop,
+**ADAPT DATES**,
+for free and online.
+
+The workshop covers good coding practices, reproducible research principles,
+and using Git for collaboration. It offers breakout room exercises with team
+leaders, and you can register as a team or volunteer as a team leader.
+But you can also follow on your own if you prefer.
+In-person exercise sessions are available in some locations.
+
+Register and find more information at
+**LINK TO WORKSHOP PAGE**.
diff --git a/content/communication/announcement-short.md b/content/communication/announcement-short.md
new file mode 100644
index 0000000..cf33255
--- /dev/null
+++ b/content/communication/announcement-short.md
@@ -0,0 +1,14 @@
++++
+title = "Workshop announcement example (shorter version)"
+[extra]
+subject = "CodeRefinery workshop announcement"
++++
+
+CodeRefinery invites everyone interested in improving their software practice
+skills to join
+the CodeRefinery workshop,
+**ADAPT DATES**,
+for free and online.
+
+Register and find more information at
+**LINK TO WORKSHOP PAGE**.
diff --git a/content/exercises.md b/content/exercises.md
new file mode 100644
index 0000000..3a50594
--- /dev/null
+++ b/content/exercises.md
@@ -0,0 +1,32 @@
++++
+title = "List of exercises"
++++
+
+## List of exercises
+
+### Week 1
+
+Day 1:
+- [Copy and browse an existing project](https://coderefinery.github.io/git-intro/browsing/#exercise)
+- [Committing changes](https://coderefinery.github.io/git-intro/commits/#exercise)
+- [Merging changes and contributing to the project](https://coderefinery.github.io/git-intro/merging/#exercise)
+
+Day 2:
+- [Cloning a Git repository and working locally](https://coderefinery.github.io/git-intro/local-workflow/#exercise)
+- [Inspecting history](https://coderefinery.github.io/git-intro/archaeology/#exercise)
+- [How to turn your project to a Git repo and share it](https://coderefinery.github.io/git-intro/sharing/#exercise)
+
+Day 3:
+- [Collaborating within the same repository](https://coderefinery.github.io/git-collaborative/same-repository/#exercise)
+- [Practicing code review](https://coderefinery.github.io/git-collaborative/code-review/#exercise)
+- [How to contribute changes to repositories that belong to others](https://coderefinery.github.io/git-collaborative/forking-workflow/#exercise)
+
+
+### Week 2
+
+In week 2, the instructors will go through exercises on stream and invite
+learners to participate with questions using the collaborative document.
+
+We will not switch between lectures and group exercise sessions in week 2. For
+groups that wish to go through exercises on their own, we recommend to schedule
+separate sessions for this.
diff --git a/content/how-to-join.png b/content/how-to-join.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5bd8080ddc86c0f357a04b78dc161ddc0d3dae5
GIT binary patch
literal 1792044
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
vAk+$9SiX6YSAr-L&upk>)brF3EM+5
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