2021-04-16 01:00:00 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<title>{{ $littlelink_name }} 🔗 {{ config('app.name') }} </title>
|
2021-07-06 10:49:29 +02:00
|
|
|
|
<meta name="description" content="{{ $userinfo->littlelink_description }}">
|
|
|
|
|
<meta name="author" content="{{ $userinfo->name }}">
|
2021-04-16 01:00:00 +02:00
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2022-02-12 14:59:07 +01:00
|
|
|
|
|
|
|
|
|
<!--#### BEGIN Meta Tags social media preview images ####-->
|
|
|
|
|
<!-- This shows a preview for title, description and avatar image of users profiles if shared on social media sites -->
|
|
|
|
|
|
|
|
|
|
<!-- Facebook Meta Tags -->
|
2022-02-20 13:12:25 +01:00
|
|
|
|
<meta property="og:url" content="{{ config('app.url') }}/@littlelink_name">
|
2022-02-12 14:59:07 +01:00
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
|
<meta property="og:title" content="{{ $userinfo->littlelink_name }}">
|
|
|
|
|
<meta property="og:description" content="{{ $userinfo->littlelink_description }}">
|
2022-02-14 12:54:51 +01:00
|
|
|
|
@if(file_exists(base_path("img/$littlelink_name" . ".png" )))
|
2022-02-12 14:59:07 +01:00
|
|
|
|
<meta property="og:image" content="{{ asset("img/$littlelink_name" . ".png") }}">
|
|
|
|
|
@else
|
2022-02-20 13:12:25 +01:00
|
|
|
|
<meta property="og:image" content="{{ asset('littlelink/images/logo.svg') }}">
|
2022-02-12 14:59:07 +01:00
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
|
<!-- Twitter Meta Tags -->
|
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
|
|
|
<meta property="twitter:domain" content="{{ config('app.url') }}/@littlelink_name">
|
2022-02-20 13:12:25 +01:00
|
|
|
|
<meta property="twitter:url" content="{{ config('app.url') }}/@littlelink_name">
|
2022-02-12 14:59:07 +01:00
|
|
|
|
<meta name="twitter:title" content="{{ $userinfo->littlelink_name }}">
|
|
|
|
|
<meta name="twitter:description" content="{{ $userinfo->littlelink_description }}">
|
2022-02-14 12:54:51 +01:00
|
|
|
|
@if(file_exists(base_path("img/$littlelink_name" . ".png" )))
|
2022-02-12 14:59:07 +01:00
|
|
|
|
<meta name="twitter:image" content="{{ asset("img/$littlelink_name" . ".png") }}">
|
|
|
|
|
@else
|
2022-02-20 13:12:25 +01:00
|
|
|
|
<meta name="twitter:image" content="{{ asset('littlelink/images/logo.svg') }}">
|
2022-02-12 14:59:07 +01:00
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
|
<!--#### END Meta Tags social media preview images ####-->
|
|
|
|
|
|
2021-07-06 10:49:29 +02:00
|
|
|
|
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,600,800&display=swap" rel="stylesheet">
|
2021-04-16 01:00:00 +02:00
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/normalize.css') }}">
|
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/skeleton-light.css') }}">
|
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/brands.css') }}">
|
2022-02-12 19:24:01 +01:00
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/hover-min.css') }}">
|
2022-02-17 22:09:58 +01:00
|
|
|
|
<link rel="stylesheet" href="{{ asset('littlelink/css/animate.css') }}">
|
2022-02-20 13:20:21 +01:00
|
|
|
|
@if(file_exists(base_path("littlelink/images/avatar.png" )))
|
|
|
|
|
<link rel="icon" type="image/png" href="{{ asset('littlelink/images/avatar.png') }}">
|
|
|
|
|
@else
|
|
|
|
|
<link rel="icon" type="image/svg+xml" href="{{ asset('littlelink/images/logo.svg') }}">
|
|
|
|
|
@endif
|
2021-07-06 10:49:29 +02:00
|
|
|
|
<style>
|
|
|
|
|
.container { max-width: 1080px !important; }
|
|
|
|
|
.button-title {
|
|
|
|
|
color: white !important;
|
|
|
|
|
background: #505050 !important;
|
|
|
|
|
height: auto !important;
|
|
|
|
|
line-height: 28px !important;
|
|
|
|
|
width: auto !important;
|
|
|
|
|
padding: 10px !important;
|
|
|
|
|
min-width: 300px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2022-02-18 10:10:13 +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 );
|
|
|
|
|
</script>
|
|
|
|
|
<?php // loads dark mode CSS if dark mode detected
|
|
|
|
|
$color_scheme = isset($_COOKIE["color_scheme"]) ? $_COOKIE["color_scheme"] : false; ?>
|
|
|
|
|
@if ($color_scheme == 'dark')
|
|
|
|
|
<!-- 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 -->
|
2021-04-16 01:00:00 +02:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
2021-07-06 11:42:39 +02:00
|
|
|
|
<div class="column" style="margin-top: 5%">
|
2021-04-16 01:00:00 +02:00
|
|
|
|
<!-- Your Image Here -->
|
2022-02-14 12:54:51 +01:00
|
|
|
|
@if(file_exists(base_path("img/$littlelink_name" . ".png" )))
|
2022-02-11 22:01:03 +01:00
|
|
|
|
<img class="rounded-avatar" src="{{ asset("img/$littlelink_name" . ".png") }}" width="100px" height="100px">
|
2022-02-20 15:42:45 +01:00
|
|
|
|
@elseif(file_exists(base_path("littlelink/images/avatar.png" )))
|
2022-02-11 22:01:03 +01:00
|
|
|
|
<img class="rounded-avatar" 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
|
|
|
|
|
<img class="rounded-avatar" src="{{ asset('littlelink/images/logo.svg') }}" srcset="{{ asset('littlelink/images/avatar@2x.png 2x') }}" width="100px" height="100px">
|
2021-04-16 01:00:00 +02:00
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
|
@foreach($information as $info)
|
|
|
|
|
<!-- Your Name -->
|
|
|
|
|
<h1>{{ $info->littlelink_name }}</h1>
|
|
|
|
|
|
|
|
|
|
<!-- Short Bio -->
|
|
|
|
|
<p>{{ $info->littlelink_description }}</p>
|
|
|
|
|
|
|
|
|
|
@endforeach
|
2022-02-17 22:09:58 +01:00
|
|
|
|
|
|
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
|
<!-- Buttons -->
|
2022-02-17 22:09:58 +01:00
|
|
|
|
<?php $initial=1; // <-- Effectively sets the initial loading time of the buttons. This value should be left at 1. ?>
|
2021-04-16 01:00:00 +02:00
|
|
|
|
@foreach($links as $link)
|
2021-05-22 15:37:18 +02:00
|
|
|
|
@php $linkName = str_replace('default ','',$link->name) @endphp
|
2021-07-06 10:49:29 +02:00
|
|
|
|
@if($link->button_id === 0)
|
2022-02-17 22:09:58 +01:00
|
|
|
|
<div style="--delay: {{ $initial++ }}s" class="button-entrance"><a class="button button-title button hvr-grow hvr-icon-wobble-vertical" href="{{ route('clickNumber') . '/' . $link->id . '/' . $link->link}}" target="_blank">
|
|
|
|
|
{{ $link->title }}</a></div>
|
2022-02-11 22:01:03 +01:00
|
|
|
|
@elseif($link->name === "custom")
|
2022-02-17 22:09:58 +01:00
|
|
|
|
<div style="--delay: {{ $initial++ }}s" class="button-entrance"><a class="button button-{{ $link->name }} button hvr-grow hvr-icon-wobble-vertical" href="{{ route('clickNumber') . '/' . $link->id . '/' . $link->link}}" target="_blank"><img class="icon hvr-icon" src="{{ asset('\/littlelink/icons\/') . $linkName }}.svg">{{ $link->title }}</a></div>
|
2021-07-06 10:49:29 +02:00
|
|
|
|
@else
|
2022-02-17 22:09:58 +01:00
|
|
|
|
<div style="--delay: {{ $initial++ }}s" class="button-entrance"><a class="button button-{{ $link->name }} button hvr-grow hvr-icon-wobble-vertical" href="{{ route('clickNumber') . '/' . $link->id . '/' . $link->link}}" target="_blank"><img class="icon hvr-icon" src="{{ asset('\/littlelink/icons\/') . $linkName }}.svg">{{ ucfirst($linkName) }}</a></div>
|
2021-07-06 10:49:29 +02:00
|
|
|
|
@endif
|
2021-04-16 01:00:00 +02:00
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
|
|
@include('layouts.footer')
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
2022-02-12 14:59:07 +01:00
|
|
|
|
</html>
|