blob: 231a114b05300060cd7ee193024c6ae582609cc9 (
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
|
<?php $this->layout('layout', ['title' => 'info', 'css' => $css . 'home.css']) ?>
<?php $this->start('page') ?>
<body>
<?php $this->insert('backtopbar', ['user' => $user, 'tab' => 'info']) ?>
<section class="info">
<h1>Info</h1>
<a href="https://github.com/vincent-peugnet/wcms" target="_blank">🐱👤 Github</a>
<a href="#">📕 Manual</a>
<a href="#">🌵 Website</a>
<h2>About</h2>
</section>
</body>
<?php $this->stop('page') ?>
|