blob: 6b4fc7ccbc82a779db493d849eacd05e20e5b406 (
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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
@extends('layouts.base')
@section('header')
Angebote
@endsection
@section('content')
<div class="container">
<div class="jumbotron p-3 p-md-5 text-white rounded bg-dark">
<div class="col-md-6 px-0">
<h1 class="display-4 font-italic">Sonderangebote</h1>
<p class="lead my-3">Finde immer die günstigsten Angebote im Bereich Spirituosen. Täglich neue Schnäppchen.</p>
<p class="lead mb-0"><a href="/about" class="text-white font-weight-bold">Erfahre mehr...</a></p>
</div>
</div>
<?php
if ( empty($data) ) {
/* Keine Angebote */
?>
<div class="alert alert-secondary">
<h4 class="alert-heading">Keine Angebote</h4>
Momentan liegen keine Angebote vor. Probieren Sie es später noch einmal.
</div>
<?php
/* Ende Keine Angebote */
} else {
/* Liste Angebote */
$count = 0;
foreach( $data as $offer) {
if ( !in_array(strtolower($offer->spirit_type), $views) ) {
$offer->url = "misc";
$offer->angebotsname = "anderen Angeboten";
$offer->linktext = "Weitere günstige Angebote entdecken.";
} else {
$offer->url = lcfirst($offer->url) ;
$offer->angebotsname = $offer->angebotsname . "-Angeboten";
$offer->linktext = "Den günstigsten ". $offer->spirit_type ." finden.";
}
if ( $count % 2 == 0) {
?>
<div class="row mb-2">
<?php
}
?>
<!--div class="col-md-6">
<div class="card flex-md-row mb-4 box-shadow h-md-250">
<div class="card-body d-flex flex-column align-items-start">
<strong class="d-inline-block mb-2 text-primary">{{ ucfirst($offer->spirit_type) }}</strong>
<h3 class="mb-0">
</h3>
<a href="/{{ $offer->spirit_type }}">Alle {{ ucfirst($offer->spirit_type) }}</a>
</div>
<img class="card-img-right flex-auto d-none d-md-block" src="{{ $offer->image_url }}" alt="Card image cap">
</div>
</div-->
<div class="col-md-6 col-sm-12" id="{{ $offer->name }}">
<div class="card flex-md-row mb-4 box-shadow h-md-250 h-sm-500">
<img class="card-img-top flex-auto d-xs-block d-sm-block img-thumbnail d-md-none" src="{{ $offer->image_url }}" alt="{{ $offer->name }}" title="{{ $offer->name }}">
<div class="card-body d-flex flex-column align-items-start">
<div class="d-inline align-items-start text-left w-100 mb-2">
<strong class="text-dark">{{ $offer->spirit_type }}</strong>
</div>
<h3 class="mb-0 d-inline-block h-100">
<a class="text-dark" href="/{{ $offer->url }}">
Hier geht es zu den {{ $offer->angebotsname }}
</a>
</h3>
<p class="card-text ">Bis zu <span class="bg-danger rounded off-badge off-badge-small">{{ $offer->procent}}%</span> sparen!</p>
<a class="w-100 u" href="/{{ $offer->url }}" style="word-wrap: none;">{{ $offer->linktext }}</a>
<!--p class="card-text mb-auto text-success w-100"><del class="text-danger">{{ TF::fF($offer->original_price) . "€" }}</del> <strong class="float-right">{{ TF::fF($offer->discounted_price) . "€" }}</strong></p-->
</div>
<img data-href="/{{ $offer->url }}" class="card-img-right border-left-0 img-thumbnail d-none d-xs-none d-md-block float-right js-link-replacement" src="{{ $offer->image_url }}" alt="{{ $offer->name }}" title="{{ $offer->name }}">
</div>
</div>
<?php
if ( $count % 2 == 1) {
?>
</div>
<?php
}
$count++;
}
// schließt den row div wieder bei ungerade anzahl
if ( $count % 2 == 1) {
?>
</div>
<?php
}
}
?>
</div>
@endsection
@section('scripts')
<script>
$(".js-link-replacement").hover(function(){
$(this).css( 'cursor', 'pointer' );
},
function(){
$(this).css( 'cursor', 'inherit');
});
$(".js-link-replacement").click(function(){
window.location.href = $(this).data("href");
});
</script>
@endsection
|