summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/conf/apps.php6
-rw-r--r--lib/static/home.md49
-rw-r--r--lib/static/view.php13
3 files changed, 1 insertions, 67 deletions
diff --git a/lib/conf/apps.php b/lib/conf/apps.php
index e0c1dfe..df2dcbd 100644
--- a/lib/conf/apps.php
+++ b/lib/conf/apps.php
@@ -1,6 +1,6 @@
<?php
-$homepage = "view-static-home";
+$homepage = "view-notes-33";
$priv_guest = 0;
$priv_user = 1;
@@ -9,10 +9,6 @@ $priv_mod = 3;
$priv_admin = 4;
$apps = array(
- "static" => array(
- "view" => $priv_guest,
- ),
-
// File upload application
"file" => array(
"index" => $priv_guest,
diff --git a/lib/static/home.md b/lib/static/home.md
deleted file mode 100644
index db11071..0000000
--- a/lib/static/home.md
+++ /dev/null
@@ -1,49 +0,0 @@
-Page destinée à être peuplée (plus ou moins intensément) dans un futur proche.
-
-### Fiche d'identité
-
-Identification
-: Alex AUVOLAT--BERNSTEIN
-
-Occupation
-: Étudiant au [Département d'Informatique](http://www.di.ens.fr) de l'[ENS](http://www.ens.fr/)
-
-Cursus
-: Élève à l'ENS rue d'Ulm (2013-)
-: Prépa MPSI/MP au lycée Masséna (2011-2013)
-: Lycée Albert Calmette (2008-2011)
-: École Montessori Les Pouces Verts (1997-2008)
-: Conservatoire (dans ma jeunesse)
-
-Contact
-: `alex.auvolat [chez] ens.fr`
-: `alex [chez] adnab.me`
-
-Intérêts en informatique
-: Systèmes d'exploitations originaux
-: Langages de programmations originaux
-: Idées nouvelles en tous genres
-
-Intérêts en dehors de l'informatique
-: Musique
-: Japonais
-: Faire à manger
-: Philosophie, philosophie des sciences, philosophie politique
-
-Compétences remarquables
-: Programmation
-: Administration Linux
-: Anglais (bilingue)
-: Piano
-
-
-### Le serveur `adnab.me`
-
-Localisation
-: <http://adnab.me>
-
-Services
-: [Dépôts Git](http://adnab.me/cgit/)
-
-
-
diff --git a/lib/static/view.php b/lib/static/view.php
deleted file mode 100644
index e3f8752..0000000
--- a/lib/static/view.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-
-require ("lib/conf/static.php");
-require("lib/markdown.php");
-
-if (isset($static_pages[$args[2]])) {
-
- $title = $static_pages[$args[2]];
- $text = file_get_contents("lib/static/" . $args[2] . ".md");
- $text = Markdown($text);
-
- require("tpl/general/static.php");
-}