-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsimple.blade.php
More file actions
executable file
·101 lines (64 loc) · 2.61 KB
/
simple.blade.php
File metadata and controls
executable file
·101 lines (64 loc) · 2.61 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html dir="ltr" lang="{{App::getLocale()}}" class="no-js">
<head>
@if(!isset(Request::header()["dnt"]))
@if (Cookie::get('codeweek_cookie_consent') == 1)
@include('layout.analytics')
@endif
@else
<!-- DO NOT TRACK removed Analytics -->
@endif
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<!-- Favicon -->
<link rel="shortcut icon" href="/images/favicon.png" type="image/x-icon">
<link rel="icon" href="/images/favicon.png" type="image/x-icon">
<link href="{{asset('css/cookiecuttr.css')}}" media="screen" rel="stylesheet"/>
<!-- No index -->
<meta name="robots" content="noindex">
@stack('extra-css')
@yield('extra-css')
{{-- @vite('resources/css/app.css')--}}
{{-- @vite(['resources/assets/sass/app.scss', 'resources/js/app.js'])--}}
{{-- @vite(['resources/css/app.css', 'resources/js/app.js'])--}}
<script>
window.App = {!! json_encode([
'csrfToken' => csrf_token(),
'user' => Auth::user(),
'signedIn' => Auth::check(),
'url' => url('/')
]) !!};
</script>
<!-- Title, keywords, description -->
<meta name="description"
content="October 14 - 27, 2024: a week to celebrate coding in Europe, encouraging citizens to learn more about technology, and connecting communities and organizations who can help you learn coding."/>
@hasSection('title')
<title>EU Code Week - @yield('title')</title>
@else
<title>EU Code Week</title>
@endif
</head>
<body>
<!-- Document Wrapper -->
<div id="app">
<main>
@yield("content")
</main>
@include('layout.footer')
</div>
<!-- Scripts -->
{{--@vite('resources/js/app.js')--}}
<script type="text/javascript" src="{{ asset('lib/jquery/jquery.js') }}"></script>
{{--<script src=//cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.min.js charset=utf-8></script>--}}
<script type="text/javascript" src="{{ asset('js/ext/plugins.js') }}"></script>
@include('scripts.countdown')
<script type="text/javascript" src="{{ asset('js/ext/functions.js') }}"></script>
<script src="https://unpkg.com/vue-select@latest"></script>
{{--<script src="https://t003c459d.emailsys2a.net/form/26/4245/574a0c9b7e/popup.js?_g=1663162661" async></script>--}}
@stack('scripts')
@yield('extra-js')
</body>
</html>