blob: f957cb5e42c4bb4db70e5f2c35e88b659859539e (
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
|
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/../config.php';
function html_navigation_bar()
{
echo '' ?>
<header class="gap-32">
<section class="row">
<a href="/">
<h1><img src="/static/img/brand/big.webp" alt="The Tinybot Project"></h1>
</a>
</section>
<section class="row gap-16">
<a href="/">home</a>
<a href="/wiki.php">wiki</a>
<?php if (SHOW_CHANNEL_LIST): ?>
<a href="/channels/">channels</a>
<?php endif; ?>
</section>
</header>
<?php ;
}
function html_big_footer()
{
echo '' ?>
<footer class="big">
<div class="w-50 column gap-8">
<section class="row gap-8 align-center">
<img src="/static/img/brand/icon.webp" alt="">
<h1>The Tinybot Project</h1>
</section>
<p>Maintained by someone</p>
</div>
</footer>
<?php ;
}
function html_footer()
{
echo '' ?>
<footer>
<div class="w-50 row gap-8">
<div class="row grow">
<p>Powered by Project Tinybot</p>
</div>
</div>
</footer>
<?php ;
}
|