blob: 0fec6787080fe054590a0197a29146caf89cb322 (
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
|
<?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>
</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 ;
}
|