aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/info.php
blob: 8f6377b2dc3bbfd38dacfe48899ffc9ce66b3840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php $this->layout('layout', ['title' => 'info', 'css' => $css . 'home.css']) ?>


<?php $this->start('page') ?>

<body>

    <?php $this->insert('backtopbar', ['user' => $user, 'tab' => 'info', 'pagelist' => $pagelist]) ?>


<main class="info">

<nav>
    <div class="block">
        <h2>Manual Summary</h2>
        <div class="scroll">
        <ul>
            <li><a href="#startup">Startup</a></li>
            <ul>

            </ul>
            <li><a href="#structure">Structure</a></li>
            <ul>
                <li><a href="#attributes">Page attributes</a></li>
                <li><a href="#database">Database</a></li>
            </ul>
            <li><a href="#editor">Editor</a></li>
            <ul>
                <li><a href="#elementsyntax">Elements syntax</a></li>
                <li><a href="#bodysyntax">Body syntax</a></li>
            </ul>
        </ul>

        </div>
    </div>
</nav>

<section class="info">

    <div class="block">
        <div class="scroll">
            <article>

                <h1>Info</h1>

                <h2>Version</h2>

                <?= $version ?>

                <h2>Links</h2>

                <ul>
                <li><a href="https://github.com/vincent-peugnet/wcms" target="_blank">🐱‍👤 Github</a></li>
                <li><a href="#manual">📕 Manual</a></li>
                <li><a href="https://w-cms.top" target="_blank">🌵 Website</a></li>
                </ul>

                <h2>About</h2>

                <h3>W-cms was made using these open sources and free components :</h3>

                <ul>
                <li><a href="https://github.com/jamesmoss/flywheel" target="_blank">🎡 James Moss's Flywheel Database</a> <i>as json noSQL flatfile database engine</i></li>
                <li><a href="https://github.com/michelf/php-markdown" target="_blank">📝 Michel Fortin's Markdown Extra</a> <i>markdown library</i></li>
                <li><a href="https://github.com/thephpleague/plates" target="_blank">🎨 Plates</a> <i>as templating engine</i></li>
                <li><a href="https://github.com/dannyvankooten/AltoRouter">🐶 Alto Router</a> <i>as router engine</i></li>
                </ul>

                <h3>Special thanks to :</h3>

                <a href="https://nicolas.club1.fr" target="_blank">🚲 Nicolas Peugnet</a>

            </article>

            <?php $this->insert('man') ?>

        </div>
    </div>


</section>

</main>
</body>

<?php $this->stop('page') ?>