aboutsummaryrefslogtreecommitdiff
path: root/resources/views/components/layout.blade.php
blob: 2edcfd419775da494f3738520a43c6006e7e73a4 (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
<!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>fops! (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="fops! (dot moe) - {{ $title }}">
    <meta property="og:image" content="/favicon-128x128.png">
</head>
<body>
    <div class="page-container">
        <div id="header">
            <div>
                <img src="{{ asset('/images/logo.png') }}" width="65">
            </div>
            <div>
                <h1>fops!</h1>
                <p>
                    (dot moe)
                </p>
                <x-navigation></x-navigation>
            </div>
        </div>
        <div id="content">
            {{ $slot }}
        </div>
        <div id="footer">
            <div>
                <span>
                    &copy; RoscoeDaFops 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.dev"></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>
    </div>
</body>
</html>