diff options
Diffstat (limited to 'lib/static')
-rw-r--r-- | lib/static/home.md | 47 | ||||
-rw-r--r-- | lib/static/view.php | 13 |
2 files changed, 60 insertions, 0 deletions
diff --git a/lib/static/home.md b/lib/static/home.md new file mode 100644 index 0000000..ef6f589 --- /dev/null +++ b/lib/static/home.md @@ -0,0 +1,47 @@ +Page destinée à être peuplée (plus ou moins intensément) dans un futur proche. + +### Fiche d'identité + +Patronyme +: Alex AUVOLAT--BERNSTEIN + +Occupation +: Étudiant au Département d'Informatique de l'ENS + +Cursus +: Élève normalien (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 [chez] adnab.me`, `alex.auvolat [chez] ens.fr` + +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 +: Cuisine +: Philosophie, philosophie des sciences, philosophie politique + +Compétences remarquables +: Programmation +: Administration Linux +: Anglais (bilingue) + + +### Le serveur `adnab.me` + +Localisation +: <http://adnab.me> + +Services +: [Dépôts Git](http://adnab.me/cgi-bin/cgit.cgi/) + + + diff --git a/lib/static/view.php b/lib/static/view.php new file mode 100644 index 0000000..e3f8752 --- /dev/null +++ b/lib/static/view.php @@ -0,0 +1,13 @@ +<?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"); +} |