blob: f1ca1f9a6d0e80c2a0d1bdafa1a1037a80499984 (
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
|
<?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">
<section>
<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') ?>
</section>
</main>
</body>
<?php $this->stop('page') ?>
|