blob: 26a4d1b129e69d9a2aaade2a53ad57dda4b04d3b (
plain)
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
|
@extends('layouts.base')
@section('header')
Der kategorische Aperitif
@endsection
@section('css')
<style>
.card {
box-shadow: inherit !important;
}
.form-text {
color: rgba(0,0,0,.7);
}
h2 {
font-size: 1.8rem !important;
}
#cocktail_search_form_field > input {
/*font-size: 1.2rem !important;*/
font-size: 18px !important;
}
</style>
@endsection
@section('content')
<main class="site-main" id="main">
<div class="container">
<nav class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/" aria-label="breadcrumb">
<ol class="breadcrumb">
<!-- Breadcrumb NavXT 6.2.1 -->
<li class="home breadcrumb-item"><span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Gehe zur Startseite" href="{{ route('index') }}" class="home"><span property="name">Startseite</span></a><meta property="position" content="1"></span></li>
<li class="archive taxonomy type current-item breadcrumb-item active" aria-current="page"><span property="itemListElement" typeof="ListItem"><span property="name">Willkommen!</span><meta property="position" content="2"></span></li>
</ol>
</nav>
</div>
<div class="container" style="padding-left: 5px">
@include('fragments.fuselkoenig')
@include('fragments.angebote')
@include('fragments.cocktails')
</div>
</main>
@endsection
|