aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
blob: a0f32d886f7a405e656888b7ebd8c11906244528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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="/js/"></script>
</body>
</html>