aboutsummaryrefslogtreecommitdiffstats
path: root/resources/views/layouts/v2.edge
blob: 38af29fccba46a40ad462eec67f16c7f707e1f88 (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>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Server</title>
  <link rel="shortcut icon" type="image/jpg" href="/img/favicon.ico" />

  {{ style('css/tailwind') }}
  {{ style('css/main') }}
</head>

<body>
    <div class="flex flex-col h-screen">
      <div class="bg-black">
        <div class="flex flex-row items-center container px-20 mx-auto">
          <a href="/"><img width="50" class="my-4 mr-10" src="https://github.com/ferdium/ferdium-server/raw/main/logo.png"></a>
          <a class="github-button" href="https://github.com/ferdium/ferdium-server" data-icon="octicon-star" data-show-count="true" aria-label="Star ferdium/ferdium-server on GitHub">Star</a>
        </div>
      </div>
      <div class="flex flex-1">
        @!section('content')
      </div>
      <div class="bg-black">
        <div class="container px-20 py-3 text-sm text-white mx-auto text-center">
          2022 © All rights reserved - <a href="/terms" style="color: #d772fe">Terms of service</a> and <a href="/privacy" style="color: #d772fe">privacy policy</a>.
        </div>
      </div>
    </div>
    <script async defer src="https://buttons.github.io/buttons.js"></script>
</body>

</html>