aboutsummaryrefslogtreecommitdiff
path: root/src/View/BaseTemplate.php
blob: 17bc39e6e253f5ef55004d59e8c76d6ff62b2ae1 (plain) (blame)
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
<!doctype html>
<html lang="en">

<head>
    <title><?php echo $this->title; ?></title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <meta name="author" content="<?php echo $GLOBALS['author_name']; ?>">
    <meta name="description" content="<?php echo $this->description; ?>">
    <link rel="canonical" href="<?php echo $this->canonical_url; ?>">
    <link rel="stylesheet" href="/static/styles.min.css">
</head>

<body>
<main id="main">
    <nav class="links">
        <span><a href="/">Top</a> &middot; </span>
        <span><a href="/best/">Best</a> &middot;</span>
        <span><a href="/new/">New</a> &middot;</span>
        <span><a href="/ask/">Ask</a> &middot;</span>
        <span><a href="/show/">Show</a> &middot;</span>
        <span><a href="/job/">Job</a></span>
    </nav>
    <?php echo $this->content; ?>
</main>

<footer>
    <p><a href="https://sr.ht/~cmc/hn/">Source Code</a></p>
    <p>Copyright &copy; 2023 - <?php echo $this->current_year; ?></p>
</footer>

</body>

</html>