blob: 8a68b9c452a73c3abe242a84c4911e0fd15e45d2 (
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
|
@extends('layouts.base')
@section('header')
RSS-Feeds
@endsection
@section('content')
<div class="container">
<div class="jumbotron p-3 p-md-5 text-white rounded bg-dark">
<div class="col-md-8 px-0">
<h1 class="display-4 font-italic">Angebote als RSS-Feeds</h1>
<p class="lead my-3">Finde immer die günstigsten Angebote im Bereich Spirituosen, praktischerweise als RSS-Feed direkt aufs Handy.</p>
<p class="lead mb-0"><a href="/" class="text-white font-weight-bold">Zurück zur Übersicht...</a></p>
</div>
</div>
<?php
$count = 0;
foreach( $data as $offer) {
// BUG: Logo is broken on smaller devices.
$width="";
if ( !in_array(strtolower($offer->spirit_type), $views) ) {
// card of misc offers
$offer->url = "misc";
$offer->feedname = "Feed der weiteren Angebote";
$offer->linktext = "Zum Feed der weiteren Angebote.";
$offer->spirit_type = "Verschiedenes";
} else {
// main cards
$offer->url = lcfirst($offer->url) ;
}
$offer->url = $offer->url . "/feed/";
if ( 5 == $count ) {
$width="width=270";
}
if ( $count % 2 == 0) {
?>
<div class="row mb-2">
<?php
}
?>
<div class="col-md-6 col-sm-12" id="{{ $offer->name }}" data-track-content data-content-name="RSS-Feed" data-content-piece="{{ ucfirst($offer->spirit_type) }}" data-content-target="{{ $offer->url }}">
<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 }}">
<a href="/{{ $offer->url }}" title="Link zum RSS-Feed">
<div class="card-body d-flex flex-column align-items-start">
<div class="card-img-overlay" title="Link zum RSS-Feed">
<span class="float-right rounded btn btn-rss oi oi-rss-alt" title="RSS-Feed" aria-hidden="true"></span>
</div>
<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 zum {{ $offer->feedname }}
</a>
</h3>
<a class="w-100 u" href="/{{ $offer->url }}" style="word-wrap: none;">{{ $offer->linktext }}</a>
</div>
</a>
<img {{ $width }} data-href="/{{ $offer->url }}" class="card-img-right border-left-0 img-thumbnail d-none d-xs-none d-md-block float-right img-responsive 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
|