diff --git a/controllers/about.js b/controllers/about.js index 793a85ee6d..9bd3671621 100644 --- a/controllers/about.js +++ b/controllers/about.js @@ -2,6 +2,9 @@ const express = require('express'); const router = express.Router(); const authHelper = require('../helpers/authentication'); +// Schools +const schools = require('../helpers/content/schools.json'); + router.get('/', function (req, res, next) { authHelper.isAuthenticated(req).then(isAuthenticated => { @@ -14,7 +17,8 @@ router.get('/', function (req, res, next) { return Promise.resolve(template); }).then( template => res.render(template, { - inline: !!template.includes('guest') + inline: !!template.includes('guest'), + schools }) ); }); diff --git a/helpers/content/schools.json b/helpers/content/schools.json new file mode 100644 index 0000000000..65599c456f --- /dev/null +++ b/helpers/content/schools.json @@ -0,0 +1,141 @@ +{ + "bp": [ + { + "name": "Elisabethenschule Frankfurt am Main", + "logo": "/images/schools/bp/Elisabethenschule-Frankfurt-am-Main.png", + "url": "http://www.elisabethenschule.net/eli-news.html" + }, + { + "name": "Georg-Christoph-Lichtenberg-Schule Kassel", + "logo": "/images/schools/bp/Georg-Christoph-Lichtenberg-Schule Kassel.jpg", + "url": "http://lg-ks.de/" + }, + { + "name": "Gymnasium Carolinum Neustrelitz", + "logo": "/images/schools/bp/Gymnasium Carolinum Neustrelitz.jpg", + "url": "https://www.carolinum.de/" + }, + { + "name": "Gymnasium Marianum Meppen", + "logo": "/images/schools/bp/Gymnasium Marianum Meppen.jpg", + "url": "http://www.marianum-meppen.de/" + }, + { + "name": "Hohenstaufen-Gymnasium Kaiserslautern", + "logo": "/images/schools/bp/Hohenstaufen-Gymnasium Kaiserslautern.png", + "url": "https://www.hsg-kl.de/" + }, + { + "name": "Johann-Michael-Sailer-Gymnasium Dillingen", + "logo": "/images/schools/bp/Johann-Michael-Sailer-Gymnasium Dillingen.png", + "url": "http://www.sailer-gymnasium.de/" + }, + { + "name": "Wilhelm-Hittorf-Gymnasium Münster", + "logo": "/images/schools/bp/Wilhelm-Hittorf-Gymnasium Münster.png", + "url": "http://www.wilhelm-hittorf-gymnasium.de/aktuelles/" + } + ], + "others": [ + { + "name": "Dientzenhofer-Gymnasium", + "logo": "/images/schools/Dientzenhofer-Gymnasium.png", + "url": "https://www.dg-info.de/" + }, + { + "name": "Franz-Stock-Gymnasium Arnsberg", + "logo": "/images/schools/Franz-Stock-Gymnasium Arnsberg.jpg", + "url": "https://www.fsg-arnsberg.de/" + }, + { + "name": "Gauß-Gymnasium Worms", + "logo": "/images/schools/Gauß-Gymnasium Worms.png", + "url": "http://www.gauss-worms.de/index.php?id=2" + }, + { + "name": "Gemeinschaftsschule Bellevue Saarbrücken", + "logo": "/images/schools/Gemeinschaftsschule Bellevue Saarbrücken.png", + "url": "http://www.gts-bellevue.de/ganztagsschule/" + }, + { + "name": "Gymnasium Saarburg", + "logo": "/images/schools/Gymnasium Saarburg.gif", + "url": "https://www.gymnasium-saarburg.de/" + }, + { + "name": "Heinrich-Hertz-Gymnasium Berlin", + "logo": "/images/schools/Heinrich-Hertz-Gymnasium Berlin.png", + "url": "https://www.hhgym.de/" + }, + { + "name": "Johannes-Kepler-Gymnasium Lebach", + "logo": "/images/schools/Johannes-Kepler-Gymnasium Lebach.jpg", + "url": "https://www.jkg-lebach.de/jkg/" + }, + { + "name": "Klaus-Gorth-Schule", + "logo": "/images/schools/Klaus-Gorth-Schule.JPG", + "url": "http://www.klaus-groth-schule.de/" + }, + { + "name": "Landesgymnasium für Hochbegabte Schwäbisch Gmünd", + "logo": "/images/schools/Landesgymnasium für Hochbegabte Schwäbisch Gmünd.png", + "url": "http://www.lgh-gmuend.de/" + }, + { + "name": "Landesschule Pforta Naumburg", + "logo": "/images/schools/Landesschule Pforta Naumburg.jpg", + "url": "https://www.landesschule-pforta.de/index.php" + }, + { + "name": "Leininger-Gymnasium Grünstadt", + "logo": "/images/schools/Leininger-Gymnasium Grünstadt.png", + "url": "http://leiningergymnasium.de/" + }, + { + "name": "Marie-Curie-Gymnasium Ludwigsfelde", + "logo": "/images/schools/Marie-Curie-Gymnasium Ludwigsfelde.png", + "url": "http://mcgym.de/startseite.html" + }, + { + "name": "Martin-Luther-Schule Marburg", + "logo": "/images/schools/Martin-Luther-Schule Marburg.jpg", + "url": "http://www.mls-marburg.de/" + }, + { + "name": "Otto-Schott-Gymnasium Mainz", + "logo": "/images/schools/Otto-Schott-Gymnasium Mainz.png", + "url": "http://osg-mainz.de/" + }, + { + "name": "Ratsgymnasium Wolfsburg", + "logo": "/images/schools/Ratsgymnasium Wolfsburg.jpg", + "url": "http://www.ratsgymnasium-wolfsburg.de/" + }, + { + "name": "Schillerschule Hannover", + "logo": "/images/schools/Schillerschule Hannover.png", + "url": "http://www.schillerschule-hannover.de/" + }, + { + "name": "Stiftsgymnasium Sindelfingen", + "logo": "/images/schools/Stiftsgymnasium Sindelfingen.png", + "url": "https://www.stiftsgymnasium.de/" + }, + { + "name": "Ursulaschule Osnabrück", + "logo": "/images/schools/Gymnasium Ursulaschule Osnabrück.jpg", + "url": "http://www.ursulaschule.de/" + }, + { + "name": "Wilhelm-Gymnasium Braunschweig", + "logo": "/images/schools/Wilhelm-Gymnasium Braunschweig.jpg", + "url": "https://www.wilhelm-gym.de/" + }, + { + "name": "Wilhelm-Ostwald-Schule Gymnasium", + "logo": "/images/schools/Wilhelm-Ostwald-Schule Gymnasium.png", + "url": "https://www.ostwaldgymnasium.de/index.php" + } + ] +} \ No newline at end of file diff --git a/static/images/schools/Dientzenhofer-Gymnasium.png b/static/images/schools/Dientzenhofer-Gymnasium.png new file mode 100644 index 0000000000..281484f957 Binary files /dev/null and b/static/images/schools/Dientzenhofer-Gymnasium.png differ diff --git a/static/images/schools/Franz-Stock-Gymnasium Arnsberg.jpg b/static/images/schools/Franz-Stock-Gymnasium Arnsberg.jpg new file mode 100644 index 0000000000..0bf4c49fda Binary files /dev/null and b/static/images/schools/Franz-Stock-Gymnasium Arnsberg.jpg differ diff --git "a/static/images/schools/Gau\303\237-Gymnasium Worms.png" "b/static/images/schools/Gau\303\237-Gymnasium Worms.png" new file mode 100644 index 0000000000..e5eef0af93 Binary files /dev/null and "b/static/images/schools/Gau\303\237-Gymnasium Worms.png" differ diff --git "a/static/images/schools/Gemeinschaftsschule Bellevue Saarbr\303\274cken.png" "b/static/images/schools/Gemeinschaftsschule Bellevue Saarbr\303\274cken.png" new file mode 100644 index 0000000000..390f0742d7 Binary files /dev/null and "b/static/images/schools/Gemeinschaftsschule Bellevue Saarbr\303\274cken.png" differ diff --git a/static/images/schools/Gymnasium Saarburg.gif b/static/images/schools/Gymnasium Saarburg.gif new file mode 100755 index 0000000000..43fce80e55 Binary files /dev/null and b/static/images/schools/Gymnasium Saarburg.gif differ diff --git "a/static/images/schools/Gymnasium Ursulaschule Osnabr\303\274ck.jpg" "b/static/images/schools/Gymnasium Ursulaschule Osnabr\303\274ck.jpg" new file mode 100755 index 0000000000..d829fbdb70 Binary files /dev/null and "b/static/images/schools/Gymnasium Ursulaschule Osnabr\303\274ck.jpg" differ diff --git a/static/images/schools/Heinrich-Hertz-Gymnasium Berlin.png b/static/images/schools/Heinrich-Hertz-Gymnasium Berlin.png new file mode 100644 index 0000000000..526484b439 Binary files /dev/null and b/static/images/schools/Heinrich-Hertz-Gymnasium Berlin.png differ diff --git a/static/images/schools/Johannes-Kepler-Gymnasium Lebach.jpg b/static/images/schools/Johannes-Kepler-Gymnasium Lebach.jpg new file mode 100755 index 0000000000..e3bf9d4ac8 Binary files /dev/null and b/static/images/schools/Johannes-Kepler-Gymnasium Lebach.jpg differ diff --git a/static/images/schools/Klaus-Gorth-Schule.JPG b/static/images/schools/Klaus-Gorth-Schule.JPG new file mode 100644 index 0000000000..57c70badb9 Binary files /dev/null and b/static/images/schools/Klaus-Gorth-Schule.JPG differ diff --git "a/static/images/schools/Landesgymnasium f\303\274r Hochbegabte Schw\303\244bisch Gm\303\274nd.png" "b/static/images/schools/Landesgymnasium f\303\274r Hochbegabte Schw\303\244bisch Gm\303\274nd.png" new file mode 100644 index 0000000000..0be559cbd3 Binary files /dev/null and "b/static/images/schools/Landesgymnasium f\303\274r Hochbegabte Schw\303\244bisch Gm\303\274nd.png" differ diff --git a/static/images/schools/Landesschule Pforta Naumburg.jpg b/static/images/schools/Landesschule Pforta Naumburg.jpg new file mode 100644 index 0000000000..1b8b764722 Binary files /dev/null and b/static/images/schools/Landesschule Pforta Naumburg.jpg differ diff --git "a/static/images/schools/Leininger-Gymnasium Gr\303\274nstadt.png" "b/static/images/schools/Leininger-Gymnasium Gr\303\274nstadt.png" new file mode 100644 index 0000000000..5cd8faab81 Binary files /dev/null and "b/static/images/schools/Leininger-Gymnasium Gr\303\274nstadt.png" differ diff --git a/static/images/schools/Marie-Curie-Gymnasium Ludwigsfelde.png b/static/images/schools/Marie-Curie-Gymnasium Ludwigsfelde.png new file mode 100644 index 0000000000..dd859077d3 Binary files /dev/null and b/static/images/schools/Marie-Curie-Gymnasium Ludwigsfelde.png differ diff --git a/static/images/schools/Martin-Luther-Schule Marburg.jpg b/static/images/schools/Martin-Luther-Schule Marburg.jpg new file mode 100644 index 0000000000..2883855a9d Binary files /dev/null and b/static/images/schools/Martin-Luther-Schule Marburg.jpg differ diff --git a/static/images/schools/Otto-Schott-Gymnasium Mainz.png b/static/images/schools/Otto-Schott-Gymnasium Mainz.png new file mode 100644 index 0000000000..7741364bf5 Binary files /dev/null and b/static/images/schools/Otto-Schott-Gymnasium Mainz.png differ diff --git a/static/images/schools/Ratsgymnasium Wolfsburg.jpg b/static/images/schools/Ratsgymnasium Wolfsburg.jpg new file mode 100644 index 0000000000..c958c30f87 Binary files /dev/null and b/static/images/schools/Ratsgymnasium Wolfsburg.jpg differ diff --git a/static/images/schools/Schillerschule Hannover.png b/static/images/schools/Schillerschule Hannover.png new file mode 100644 index 0000000000..b8b31e51da Binary files /dev/null and b/static/images/schools/Schillerschule Hannover.png differ diff --git a/static/images/schools/Stiftsgymnasium Sindelfingen.png b/static/images/schools/Stiftsgymnasium Sindelfingen.png new file mode 100644 index 0000000000..580a2b9933 Binary files /dev/null and b/static/images/schools/Stiftsgymnasium Sindelfingen.png differ diff --git a/static/images/schools/Wilhelm-Gymnasium Braunschweig.jpg b/static/images/schools/Wilhelm-Gymnasium Braunschweig.jpg new file mode 100644 index 0000000000..236401f933 Binary files /dev/null and b/static/images/schools/Wilhelm-Gymnasium Braunschweig.jpg differ diff --git a/static/images/schools/Wilhelm-Ostwald-Schule Gymnasium.png b/static/images/schools/Wilhelm-Ostwald-Schule Gymnasium.png new file mode 100644 index 0000000000..8671af7cf5 Binary files /dev/null and b/static/images/schools/Wilhelm-Ostwald-Schule Gymnasium.png differ diff --git a/static/images/schools/bp/Elisabethenschule-Frankfurt-am-Main.png b/static/images/schools/bp/Elisabethenschule-Frankfurt-am-Main.png new file mode 100755 index 0000000000..b997217291 Binary files /dev/null and b/static/images/schools/bp/Elisabethenschule-Frankfurt-am-Main.png differ diff --git a/static/images/schools/bp/Georg-Christoph-Lichtenberg-Schule Kassel.jpg b/static/images/schools/bp/Georg-Christoph-Lichtenberg-Schule Kassel.jpg new file mode 100644 index 0000000000..0c0950f2d3 Binary files /dev/null and b/static/images/schools/bp/Georg-Christoph-Lichtenberg-Schule Kassel.jpg differ diff --git a/static/images/schools/bp/Gymnasium Carolinum Neustrelitz.jpg b/static/images/schools/bp/Gymnasium Carolinum Neustrelitz.jpg new file mode 100755 index 0000000000..2a4996d77f Binary files /dev/null and b/static/images/schools/bp/Gymnasium Carolinum Neustrelitz.jpg differ diff --git a/static/images/schools/bp/Gymnasium Marianum Meppen.jpg b/static/images/schools/bp/Gymnasium Marianum Meppen.jpg new file mode 100644 index 0000000000..ff6c41d915 Binary files /dev/null and b/static/images/schools/bp/Gymnasium Marianum Meppen.jpg differ diff --git a/static/images/schools/bp/Hohenstaufen-Gymnasium Kaiserslautern.png b/static/images/schools/bp/Hohenstaufen-Gymnasium Kaiserslautern.png new file mode 100755 index 0000000000..649740a429 Binary files /dev/null and b/static/images/schools/bp/Hohenstaufen-Gymnasium Kaiserslautern.png differ diff --git a/static/images/schools/bp/Johann-Michael-Sailer-Gymnasium Dillingen.png b/static/images/schools/bp/Johann-Michael-Sailer-Gymnasium Dillingen.png new file mode 100755 index 0000000000..4e162a4395 Binary files /dev/null and b/static/images/schools/bp/Johann-Michael-Sailer-Gymnasium Dillingen.png differ diff --git "a/static/images/schools/bp/Wilhelm-Hittorf-Gymnasium M\303\274nster.png" "b/static/images/schools/bp/Wilhelm-Hittorf-Gymnasium M\303\274nster.png" new file mode 100755 index 0000000000..3e99f87757 Binary files /dev/null and "b/static/images/schools/bp/Wilhelm-Hittorf-Gymnasium M\303\274nster.png" differ diff --git a/static/styles/about/about.scss b/static/styles/about/about.scss new file mode 100644 index 0000000000..e40577840d --- /dev/null +++ b/static/styles/about/about.scss @@ -0,0 +1,30 @@ +@import '../lib/colors'; + +.section-about { + h3 { + color: $primaryColor; + font-weight: bold; + } + h4 { + color: $primaryColor; + font-weight: bold; + } + hgroup { + text-align: center; + font-weight: bold; + margin: 60px 0 60px; + width: 100%; + } + + .section-title { + width: 100%; + padding: 10px 0 20px; + line-height: 1.75rem; + h4 { + color: $primaryColor; + margin-bottom: 0; + margin-right: 20px; + font-weight: 700; + } + } +} \ No newline at end of file diff --git a/static/styles/partner/partner.scss b/static/styles/partner/partner.scss index 1b778817ef..8cc92197c8 100644 --- a/static/styles/partner/partner.scss +++ b/static/styles/partner/partner.scss @@ -25,7 +25,12 @@ hgroup { .section-partner { h5 { + color: $primaryColor !important; + margin-top: 20px; + } + h4 { color: $primaryColor; + font-weight: bold; margin-top: 20px; } ul { diff --git a/views/about/about.hbs b/views/about/about.hbs index 95add00e9e..66cf613502 100644 --- a/views/about/about.hbs +++ b/views/about/about.hbs @@ -1,92 +1,127 @@

Über die HPI Schul-Cloud

Das - Hasso-Plattner-Institut für Digital Engineering entwickelt unter der Leitung von Prof. Dr. Christoph Meinel zusammen + Hasso-Plattner-Institut für Digital Engineering entwickelt unter + der Leitung von Prof. Dr. Christoph Meinel zusammen mit dem - MINT EC, einem bundesweiten Exzellenznetzwerk von knapp 300 Schulen und unterstützt vom Bundesministerium für - Forschung und Bildung eine Schul-Cloud. Die Schul-Cloud soll die technische Grundlage schaffen, dass Lehrer und Schüler - in jedem Unterrichtsfach auch moderne digitale Lehr- und Lerninhalte nutzen können, so zwar so, wie Apps über Smartphones + MINT EC, einem bundesweiten Exzellenznetzwerk von knapp + 300 Schulen und unterstützt vom Bundesministerium für + Forschung und Bildung eine Schul-Cloud. Die Schul-Cloud soll die technische Grundlage schaffen, dass Lehrer und + Schüler + in jedem Unterrichtsfach auch moderne digitale Lehr- und Lerninhalte nutzen können, so zwar so, wie Apps über + Smartphones oder Tabletts nutzbar sind.

-
-

Das Projekt Schul-Cloud ist im September 2016 in die 5-monatige Konzeptphase gestartet. Ab Mai 2017 startete die Pilotphase, in der 27 MINT-EC-Schulen die Schul-Cloud testen und nutzen. Ab Mai 2018 startet die Roll-out-Phase, in der die Nutzung und Testung der Schul-Cloud stufenweise auf alle 300 Schulen aus dem nationalen Excellence-Schulnetzwerks MINT-EC ausgeweitet wird. Seit dem wächst auch unser Team stetig!

-
-

Unsere Pilotschulen

+
+

Das Projekt Schul-Cloud ist im September 2016 in die 5-monatige Konzeptphase gestartet. Ab Mai 2017 startete die + Pilotphase, in der 27 MINT-EC-Schulen die Schul-Cloud testen und nutzen. Ab Mai 2018 startet die Roll-out-Phase, + in der die Nutzung und Testung der Schul-Cloud stufenweise auf alle 300 Schulen aus dem nationalen + Excellence-Schulnetzwerks MINT-EC ausgeweitet wird. Seit dem wächst auch unser Team stetig!

+
+
+

Pilotschulen

+
Best Practice Schulen
+
+
+ {{#each schools.bp}} +
+
+ + Logo {{{name}}} + +
+
+ {{/each}} +
+
+ +
weitere Pilotschulen
+
+
+ {{#each schools.others}} +
+
+ + Logo {{{name}}} + +
+
+ {{/each}} +
+
+
+
+

Im Rahmen des Projekts wird die Schul-Cloud durch drei Arbeitsgruppen des MINT-EC-Themenclusters Schul-Cloud + unterstützt: AG IT, Schulleitung & Unterricht.


+

Wir möchten uns ganz herzlich für die tolle Zusammenarbeit und das große Engagement unserer Pilotschullehrkräfte + bedanken!

+
+

Bildungswissenschaftliche Begleitung

+

Zur pädagogisch-didaktischen Unterstützung des Projekts im Sinne der Entwicklung von Beispielen für die + Unterrichtsgestaltung + mit verfügbarem digitalen Lernmaterial aus der Schul-Cloud und dem Erkenntnisgewinn über die digitale + Unterrichtsgestaltung + mit der Schul-Cloud ist eine externe bildungswissenschaftliche Begleitung beauftragt. Zum einen führt die + Universität Tübingen eine + wissenschaftliche + Befragung der Pilotschulen zu Potenzialen der Schul-Cloud durch. Zum anderen gestaltet das + Georg-Eckert-Institut + aufbauend auf den Ergebnissen von Unterrichtsbeobachtungen und Workshops mit den Pilotschulen ein + Nutzungskonzept für + die pädagogisch-didaktisch sinnvolle Anwendung der Schul-Cloud.

+
+

Veröffentlichungen

+
+

2017

-
-

Im Rahmen des Projekts wird die Schul-Cloud durch drei Arbeitsgruppen des MINT-EC-Themenclusters Schul-Cloud unterstützt: AG IT, Schulleitung & Unterricht.


-

Wir möchten uns ganz herzlich für die tolle Zusammenarbeit und das große Engagement unserer Pilotschullehrkräfte bedanken!

-
-

Bildungswissenschaftliche Begleitung

-

Zur pädagogisch-didaktischen Unterstützung des Projekts im Sinne der Entwicklung von Beispielen für die Unterrichtsgestaltung - mit verfügbarem digitalen Lernmaterial aus der Schul-Cloud und dem Erkenntnisgewinn über die digitale Unterrichtsgestaltung - mit der Schul-Cloud ist eine externe bildungswissenschaftliche Begleitung beauftragt. Zum einen führt die - Universität Tübingen eine wissenschaftliche - Befragung der Pilotschulen zu Potenzialen der Schul-Cloud durch. Zum anderen gestaltet das - Georg-Eckert-Institut - aufbauend auf den Ergebnissen von Unterrichtsbeobachtungen und Workshops mit den Pilotschulen ein Nutzungskonzept für - die pädagogisch-didaktisch sinnvolle Anwendung der Schul-Cloud.

-
-

Veröffentlichungen

-
-

2017

- -
-

2018

- +
+

2018

+ -
+

Aufzeichnungen von Vorträgen

-
-

Unsere Auszeichnungen

-

Ernennung zum „Ausgezeichneten Ort“ im bundesweiten Wettbewerb „Land der Ideen“.

- +
  • Vorträge des 1. Schul-Cloud-Forums (April + 2017)
  • +
  • Vorträge des 2. Schul-Cloud-Forums (März + 2018)
  • + +
    +

    Unsere Auszeichnungen

    +

    Ernennung zum „Ausgezeichneten Ort“ im bundesweiten Wettbewerb „Land der Ideen“. +

    +
    diff --git a/views/about/about_guest.hbs b/views/about/about_guest.hbs index eda26dfce1..a8daf41846 100644 --- a/views/about/about_guest.hbs +++ b/views/about/about_guest.hbs @@ -2,6 +2,8 @@ {{#content "styles" mode="append"}} + + {{/content}} {{#content "scripts" mode="append"}} diff --git a/views/about/about_loggedin.hbs b/views/about/about_loggedin.hbs index 2a18aefaa9..0e4d32a641 100644 --- a/views/about/about_loggedin.hbs +++ b/views/about/about_loggedin.hbs @@ -1,6 +1,8 @@ {{#extend "lib/loggedin" hideSearch="true"}} {{#content "styles" mode="append"}} + + {{/content}} {{#content "page"}} diff --git a/views/lib/header.hbs b/views/lib/header.hbs index d0a98e2695..8192a4ce3d 100644 --- a/views/lib/header.hbs +++ b/views/lib/header.hbs @@ -10,6 +10,9 @@ +