aboutsummaryrefslogtreecommitdiff
path: root/resources/views/components/layout.blade.php
blob: 3e9f9ed3e6a6b41e3cf978d72bd1ca36dc8ef5ed (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
    <!-- Global -->
    <meta charset="utf-8">
    <meta property="og:type" content="website">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="theme-color" content="#f27405">
    <title>wah! (dot moe)</title>
    <link rel="stylesheet" href="{{ asset('/css/master.css') }}"/>
    <link rel="icon" type="image/png" href="{{ asset('/favicon-32x32.png') }}" sizes="32x32"/>
    <link rel="icon" type="image/png" href="{{ asset('/favicon-16x16.png') }}" sizes="16x16"/>
    @if ($isChristmas)<script src="{{ asset('/js/christmas/snowstorm.js') }}"></script>@endif


    <!-- Page-specific -->
    <meta property="og:title" content="wah! (dot moe) - {{ $title }}">
    <meta property="og:image" content="/favicon-128x128.png">
</head>
<body>
    <div class="page-container">
        <div id="header">
            <header>
                <div>
                    <img src="{{ asset('/images/logo.png') }}" width="65" alt="A pixel art depiction of a paw, in three alternating shades of orange.">
                </div>
                <div>
                    <h1>wah!</h1>
                    <p>
                        (dot moe)
                    </p>
                    <x-navigation></x-navigation>
                </div>
            </header>
        </div>
        <div id="content">
            <main>
                {{ $slot }}
            </main>
        </div>
        <div>
        <footer>
            <div id="footer">
                <div>
                    <span>
                        &copy; RoscoeDaWah 2021-{{ date('Y') }}<br>
                        v{{ config('app.version') }}, <a href="https://git.frzn.dev/RoscoeDaWah/wah.moe/releases/latest">Source</a><br>
                        Served by {{ gethostname() }}
                    </span>
                </div>
                <div>
                    <img src="{{ URL::asset('images/buttons/wah.png') }}" alt="wah! (dot moe)">
                    <a href="https://aliceisvery.gay/"><img src="{{ URL::asset('images/buttons/cnfunknown.gif') }}" alt="ConfusionUnknown"></a>
                    <a href="https://julimiro.eu/"><img src="{{ URL::asset('images/buttons/juli.gif') }}" alt="Julimiro.eu"></a>
                    <a href="https://x86.isafox.gay/"><img src="{{ URL::asset('images/buttons/x86.gif') }}" alt="x86Overflow"></a>
                    <a href="https://thinliquid.dev/"><img src="{{ URL::asset('images/buttons/thnlqd.png') }}" alt="thinliquid"></a>
                    <a href="https://dimden.dev/"><img src="https://dimden.dev/services/images/88x31.gif" alt="Dimden's website"></a><br>
                    <a href="https://developer.mozilla.org/en-US/docs/Web/CSS"><img src="{{ URL::asset('images/buttons/csshard.gif') }}" alt="CSS is hard"></a>
                    <a href="https://linux.org/"><img src="{{ URL::asset('images/buttons/linuxnow.gif') }}" alt="Linux NOW!"></a>
                    <img src="{{ URL::asset('images/buttons/paws-aliased.png') }}" alt="Made with my own two paws">
                    <img src="{{ URL::asset('images/buttons/transrights.gif') }}" alt="Trans Rights NOW!">
                    <a href="https://www.vim.org/"><img src="{{ URL::asset('images/buttons/vim.gif') }}" alt="Vim"></a>
                    <img src="{{ URL::asset('images/buttons/aliasing.png') }}" alt="I Heart Aliasing">
                </div>
            </div>
        </footer>
        </div>
    </div>
</body>
</html>