first experiments with image CDNs
parent
e448dbaad8
commit
347dd0bc49
|
@ -39,11 +39,29 @@
|
||||||
|
|
||||||
@if (\Setting::get('image') and !isset($categoryModel) or (isset($categoryModel) and !$categoryModel->image))
|
@if (\Setting::get('image') and !isset($categoryModel) or (isset($categoryModel) and !$categoryModel->image))
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
.jumbotron-ln {
|
.jumbotron-ln {
|
||||||
background-image: url({{ asset('uploads/' . \Setting::get('image')) }});
|
background-image: url('https://ik.imagekit.io/areya/tr:w-576,h-500,fo-auto/home-image_cbMyx3ISt.jpg');
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (min-width: 576px) {
|
||||||
|
.jumbotron-ln {
|
||||||
|
background-image: url('https://ik.imagekit.io/areya/tr:w-1000,h-500,fo-auto/home-image_cbMyx3ISt.jpg');
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media (min-width: 1000px) {
|
||||||
|
.jumbotron-ln {
|
||||||
|
background-image: url('https://ik.imagekit.io/areya/tr:h500,fo-face/home-image_cbMyx3ISt.jpg');
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
@ -191,7 +209,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@foreach($nachrichten as $nach)
|
@foreach($nachrichten as $nach)
|
||||||
<div class="col-12 col-md-4">
|
<div class="col-12 col-md-6 col-md-4">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue