2021-04-16 01:00:00 +02:00
|
|
|
|
<!DOCTYPE html>
|
2022-06-08 15:43:51 +02:00
|
|
|
|
@include('layouts.lang')
|
2021-04-16 01:00:00 +02:00
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
2022-03-17 17:33:37 +01:00
|
|
|
|
<title>{{ config('app.name') }}</title>
|
2021-04-16 01:00:00 +02:00
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2022-03-17 17:33:37 +01:00
|
|
|
|
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,600,800&display=swap" rel="stylesheet">
|
2022-05-26 11:21:55 +02:00
|
|
|
|
<style>@font-face{font-family:'ll';src:url({{ asset('littlelink/fonts/littlelink-custom.otf') }}) format("opentype")}</style>
|
2021-04-16 01:00:00 +02:00
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/normalize.css') }}">
|
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/brands.css') }}">
|
2022-03-17 17:33:37 +01:00
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/hover-min.css') }}">
|
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/animate.css') }}">
|
2022-02-20 13:12:25 +01:00
|
|
|
|
@if(file_exists(base_path("littlelink/images/avatar.png" )))
|
2021-04-16 01:00:00 +02:00
|
|
|
|
<link rel="icon" type="image/png" href="{{ asset('littlelink/images/avatar.png') }}">
|
2022-02-20 13:12:25 +01:00
|
|
|
|
@else
|
2022-02-20 13:20:21 +01:00
|
|
|
|
<link rel="icon" type="image/svg+xml" href="{{ asset('littlelink/images/logo.svg') }}">
|
2022-02-20 13:12:25 +01:00
|
|
|
|
@endif
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
2022-03-17 17:33:37 +01:00
|
|
|
|
<!-- begin dark mode detection -->
|
|
|
|
|
<script src="{{ asset('littlelink/js/js.cookie.min.js') }}"></script>
|
|
|
|
|
<script>
|
|
|
|
|
// code to set the `color_scheme` cookie
|
|
|
|
|
var $color_scheme = Cookies.get("color_scheme");
|
|
|
|
|
function get_color_scheme() {
|
|
|
|
|
return (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches) ? "dark" : "light";
|
|
|
|
|
}
|
|
|
|
|
function update_color_scheme() {
|
|
|
|
|
Cookies.set("color_scheme", get_color_scheme());
|
|
|
|
|
}
|
|
|
|
|
// read & compare cookie `color-scheme`
|
|
|
|
|
if ((typeof $color_scheme === "undefined") || (get_color_scheme() != $color_scheme))
|
|
|
|
|
update_color_scheme();
|
|
|
|
|
// detect changes and change the cookie
|
|
|
|
|
if (window.matchMedia)
|
|
|
|
|
window.matchMedia("(prefers-color-scheme: dark)").addListener( update_color_scheme );
|
|
|
|
|
// reloads page to apply the dark mode cookie
|
|
|
|
|
window.onload = function() {
|
|
|
|
|
if(!window.location.hash && get_color_scheme() == "dark" && (get_color_scheme() != $color_scheme)) {
|
|
|
|
|
window.location = window.location + '#dark';
|
|
|
|
|
window.location.reload();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<?php // loads dark mode CSS if dark mode detected
|
2022-05-13 13:03:10 +02:00
|
|
|
|
$color_scheme = isset($_COOKIE["color_scheme"]) ? $_COOKIE["color_scheme"] : false;
|
|
|
|
|
$color_scheme_override = isset($_COOKIE["color_scheme_override"]) ? $_COOKIE["color_scheme_override"] : false; ?>
|
|
|
|
|
@if ($color_scheme == 'dark' and $color_scheme_override != 'light' or $color_scheme_override == 'dark')
|
2022-03-17 17:33:37 +01:00
|
|
|
|
<!-- switch the two <link> Tags below to default to dark mode if cookie detection fails -->
|
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/skeleton-dark.css') }}">
|
|
|
|
|
@else
|
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/skeleton-light.css') }}">
|
|
|
|
|
@endif
|
|
|
|
|
<!-- end dark mode detection -->
|
2022-05-13 17:09:35 +02:00
|
|
|
|
|
|
|
|
|
<style>.container-text{position:relative;width:95%;max-width:900px;margin:0 auto;box-sizing:border-box}</style>
|
2021-04-16 01:00:00 +02:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<!-- Primary Page Layout
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
2022-05-13 17:09:35 +02:00
|
|
|
|
<div class="container-text">
|
2021-04-16 01:00:00 +02:00
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
|
|
<div class="column" style="margin-top: 10%">
|
|
|
|
|
<!-- Your Image Here -->
|
2022-02-20 13:12:25 +01:00
|
|
|
|
@if(file_exists(base_path("littlelink/images/avatar.png" )))
|
2022-03-17 17:33:37 +01:00
|
|
|
|
<img src="{{ asset('littlelink/images/avatar.png') }}" srcset="{{ asset('littlelink/images/avatar@2x.png 2x') }}" width="100px" height="100px">
|
2022-02-20 13:12:25 +01:00
|
|
|
|
@else
|
2022-05-26 11:21:55 +02:00
|
|
|
|
<div class="logo-container fadein">
|
|
|
|
|
<img class="rotate" src="{{ asset('littlelink/images/just-gear.svg') }}" alt="Logo" style="width:150px; height:150px;">
|
|
|
|
|
<div class="logo-centered">l</div>
|
|
|
|
|
</div>
|
2022-02-20 13:12:25 +01:00
|
|
|
|
@endif
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
2022-03-17 17:33:37 +01:00
|
|
|
|
<div class="jumbotron" style="margin-top: 10%">
|
2021-04-16 01:00:00 +02:00
|
|
|
|
<h1 class="display-4">{{ $name }}</h1>
|
|
|
|
|
<hr class="my-4">
|
|
|
|
|
<p>
|
2022-03-23 10:38:47 +01:00
|
|
|
|
<?php echo $data['page']->$name; ?>
|
2021-04-16 01:00:00 +02:00
|
|
|
|
</p>
|
|
|
|
|
<p class="lead">
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@include('layouts.footer')
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- End Document
|
|
|
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|