v1.4.7 Add favicon

This commit is contained in:
victor 2020-10-15 11:14:29 +02:00
parent 845b097501
commit eb6c5dbfeb
5 changed files with 9 additions and 4 deletions

View File

@ -82,5 +82,6 @@ return[
"mandag" => "Mandag",
"tirsdag" => "Tirsdag",
"onsdag" => "Onsdag",
"torsdag" => "Torsdag"
"torsdag" => "Torsdag",
"aktivitetaflyst" => "Aktivitet Aflyst :("
];

View File

@ -74,7 +74,7 @@ return[
"error" => "Error",
"404" => "This page doesn't exist.",
"403" => "You don't have permissions to access this page.",
"canceled" => "Canceled",
"canceled" => "Cancelled",
"feedbacksendt" => "Thank you for your feedback!",
"feedbackerror" => "You have to write a feedback message.",
"risros" => "Choose feedback type: positive, negative or other ",
@ -84,5 +84,6 @@ return[
"besked" => "Messages",
"send" => "Send messeags",
"kategori" => "Category",
"opret" => "Created at: "
"opret" => "Created at: ",
"aktivitetaflyst" => "Event Cancelled :("
];

View File

@ -3,6 +3,7 @@
<head>
<title>@yield("title")</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='icon' href='{{ asset('/images/icons/pencil-dark.svg') }}' type='image/x-icon'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="{{ asset("/js/jquery-3.2.1.min.js") }}"></script>
<script type="text/javascript">

View File

@ -37,6 +37,7 @@
background-color: #00788A;
color: white;
border-radius: 10px;
background: linear-gradient(to right, red, purple);
}
.closebtn {
margin-left: 15px;
@ -66,7 +67,7 @@
<div class="alertBoxBackground" id="notifications">
<div class="alert">
<span class="closebtn" onclick="deleteNotifications(document.getElementById('notifications'))">&times;</span>
<strong>Event Canceled</strong>
<strong>{{__('msg.aktivitetaflyst')}}</strong>
@foreach(\App\Notification::query()->where("user_id", "=", auth()->user()->id)->get() as $notification)
<p>{{ $notification->message }}{{ __("msg.canceled") }}</p>
@endforeach

View File

@ -4,6 +4,7 @@
<title>@yield("title")</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" rel="stylesheet" href="{{ asset("/css/normalize.css") }}">
<link rel='icon' href='{{ asset('/images/icons/pencil-dark.svg') }}' type='image/x-icon'>
@if(request()->cookie("mode") == "dark")
<link type="text/css" rel="stylesheet" href="{{ mix("/css/webappdark.css") }}">
@else