Commits: 4

Create a test run page about the UU4U collaboration

index 79e54bd..36da1e7 100644
--- a/content/index.txt
+++ b/content/index.txt
@@ -13,7 +13,12 @@ Hello! We are running a workshop that will give you a glimpse into the way softw
=
=    or drop us a note at {Link|fana@software.garden|url= mailto:fana@software.garden}
=
-You can learn more about {Link|our motivation|url=/motivation.html}. Below is material through which we will be going during the workshop. Only the first section is a required read before you come, but feel free to read more to get more prepared.
+During this *5 days workshop* (4 hours each day) you will learn to solve problems using a functional programming language. We think {Link|it's important|url=/motivation.html}. Upon completion of the course your name, photo and link to your website (or LinkedIn profile etc) will be posted here.  The price for participation is *500 €* (inc. 21% VAT).
+
+| Note
+    {Icon|name=gift} {Link|Special offer for University of Utrecht students|url=/test-run.html}.
+
+Below is the material through which we will be going during the workshop. Only the first section is a required read before you come.
=
=| Link
=    url = /preparation.html
new file mode 100644
index 0000000..a0c1120
--- /dev/null
+++ b/content/test-run.txt
@@ -0,0 +1,11 @@
+| Title
+    Special Offer for University of Utrecht Students
+
+In collaboration with {Link|Career Services|url=https://students.uu.nl/en/careerservices} of the University of Utrecht we are offering a one time, free workshop for first 12 students to sign up. The workshop will be shorter than usual (3 hours a day) because you are so smart 🤓
+
+| Emphasize
+    {Link|Sign up!|url=https://fd21.formdesk.com/universiteitutrecht/CS-20190304-08-SoftwareGarden}
+
+    <>
+
+    {Icon|name=phone} {Link|+31 638 216 166|url=tel:+31638216166} | {Icon|name=mail} {Link|fana@software.garden|url= mailto:fana@software.garden} | {Icon|name=home} {Link|Back|url=/}
index 499cdc9..12dfff2 100644
--- a/src/Main.elm
+++ b/src/Main.elm
@@ -188,6 +188,9 @@ view model =
=                Routes.Motivation ->
=                    Element.none
=
+                Routes.TestRun ->
+                    Element.none
+
=                Routes.Content _ ->
=                    contentNavigationBar model
=
@@ -464,6 +467,12 @@ loadContent route =
=                , expect = Http.expectString ContentFetched
=                }
=
+        Routes.TestRun ->
+            Http.get
+                { url = "/content/test-run.txt"
+                , expect = Http.expectString ContentFetched
+                }
+
=        Routes.Content base ->
=            Http.get
=                { url = "/content/" ++ base ++ ".txt"
index 29893c6..8dbac32 100644
--- a/src/Routes.elm
+++ b/src/Routes.elm
@@ -12,6 +12,7 @@ type Route
=    = Home
=    | Content String
=    | Motivation
+    | TestRun
=    | NotFound
=
=
@@ -20,6 +21,7 @@ parser =
=    Parser.oneOf
=        [ Parser.map Home Parser.top
=        , Parser.map Motivation (Parser.s "motivation.html")
+        , Parser.map TestRun (Parser.s "test-run.html")
=        , Parser.custom "Content"
=            (\path ->
=                case String.split "." path of

Merge branch 'pricing' into 'master'

Create a test run page about the UU4U collaboration

See merge request software-garden/software-garden.gitlab.io!22

Reedit test run page

index a0c1120..00ea641 100644
--- a/content/test-run.txt
+++ b/content/test-run.txt
@@ -1,10 +1,10 @@
=| Title
=    Special Offer for University of Utrecht Students
=
-In collaboration with {Link|Career Services|url=https://students.uu.nl/en/careerservices} of the University of Utrecht we are offering a one time, free workshop for first 12 students to sign up. The workshop will be shorter than usual (3 hours a day) because you are so smart 🤓
+In collaboration with {Link|Career Services|url=https://students.uu.nl/en/careerservices} of the University of Utrecht we are offering a one time, free workshop for the first 12 students to sign up. The workshop will be shorter than usual - 3 hours a day.
=
=| Emphasize
-    {Link|Sign up!|url=https://fd21.formdesk.com/universiteitutrecht/CS-20190304-08-SoftwareGarden}
+    {Link|Sign up now|url=https://fd21.formdesk.com/universiteitutrecht/CS-20190304-08-SoftwareGarden}
=
=    <>
=

Merge branch 'pricing' into 'master'

Reedit test run page

See merge request software-garden/software-garden.gitlab.io!23