v1.4.7 Add favicon
This commit is contained in:
@@ -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">
|
||||
|
||||
@@ -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'))">×</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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user