diff options
author | Matthias Schiffer <matthias@gamezock.de> | 2008-10-01 16:32:55 +0200 |
---|---|---|
committer | Matthias Schiffer <matthias@gamezock.de> | 2008-10-01 16:32:55 +0200 |
commit | 15ef06a1a07757c8f7590784438b82a873fbdc02 (patch) | |
tree | 40b8a690ff07e047e7c612346ca012585af433db /contents/compag/main.php | |
download | compag-website-master.tar compag-website-master.zip |
Diffstat (limited to 'contents/compag/main.php')
-rw-r--r-- | contents/compag/main.php | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/contents/compag/main.php b/contents/compag/main.php new file mode 100644 index 0000000..276a2cd --- /dev/null +++ b/contents/compag/main.php @@ -0,0 +1,42 @@ +<?php + $title = 'Information'; + $author = 'Jakob'; + $pathToRoot = '../../'; +?> +<?php + include($pathToRoot . 'includes/firstinclude.inc.php'); + include($pathToRoot . 'includes/header.inc.php'); + include($pathToRoot . 'includes/mainmenu.inc.php'); + + include($pathToRoot . 'sidebars/compag/main.inc.php'); +?> + +<div id="inhalt"> + <h2> + Informationen zur CompAG + </h2> + <p> + Die Computer-AG (kurz CompAG) ist eine Gruppe von Schülern, + die in Eigeninitiative, ohne Leitung durch einen Lehrer, + das Internetcafe der Lauenburgischen Gelehrtenschule Ratzeburg + administrieren, und miteinander ihr Wissen über Computer erweitern. + Dabei lernen sie z.B. den Umgang mit unterschiedlichen Computersprachen (C, C++, Ruby, Html, Php), + und üben sich im Umgang mit dem alternativem Betriebssystem Linux. + </p> + <p> + Wer bei der CompAG mitmachen möchte, + kann einfach vorbeisehen. + Es gibt keine Anwesenheitspflicht, + aber da die CompAG auf Eigeninitiative beruht, + ist die Anwesenheit und Motivation der Mitglieder + Grundlage und Voraussetzung für den Erfolg dieser AG. + </p> + <p> + Die CompAG existiert ca. seit Sommer 2003. + </p> +</div> + +<?php + include($pathToRoot . 'includes/footer.inc.php'); + include($pathToRoot . 'includes/lastinclude.inc.php'); +?> |