diff options
author | Romain d'Alverny <rda@mageia.org> | 2012-05-15 17:27:45 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2012-05-15 17:27:45 +0000 |
commit | c3b4ecc4803de95fa2bc5b604fd91ffdb4b90f1d (patch) | |
tree | d8510db545ece075b660dc7f10abc255324787ea /index.php | |
parent | 54473d1ad4ecd0695c5668698e221d4dc5fa67e4 (diff) | |
download | nav-c3b4ecc4803de95fa2bc5b604fd91ffdb4b90f1d.tar nav-c3b4ecc4803de95fa2bc5b604fd91ffdb4b90f1d.tar.gz nav-c3b4ecc4803de95fa2bc5b604fd91ffdb4b90f1d.tar.bz2 nav-c3b4ecc4803de95fa2bc5b604fd91ffdb4b90f1d.tar.xz nav-c3b4ecc4803de95fa2bc5b604fd91ffdb4b90f1d.zip |
first import; adapted copy of www/_nav/
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100644 index 0000000..f55f294 --- /dev/null +++ b/index.php @@ -0,0 +1,20 @@ +<html lang="en"> +<head> + <meta name="robots" content="noindex,nosnippet,nofollow"> + <title>mognase doc</title> + <style> + html, body { margin: 0; padding: 0; } + #navdoc { font: 14px/1.4 "Trebuchet MS", "Lucida Grande", "Lucida Sans", Verdana, Tahoma, Arial, sans-serif; margin: 10px; } + #navdoc code { background: #333; color: #eee; font-size: 80%; padding: 0.5em; } + </style> +</head> +<body class="community"> + <div id="navdoc"> + <?php + include 'lib/php-markdown/markdown.php'; + echo Markdown(file_get_contents('README.md')); + ?> + </div> + <script src="/_nav/js/"></script> +</body> +</html>
\ No newline at end of file |