blob: 8dcc915b6f6f3dfd35678a285be29ad9557e2b31 (
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
|
<?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>
</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 ;
}
|