2022-08-30 10:49:27 +00:00
|
|
|
@layout('content.master')
|
|
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
|
|
<section>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<h1>Balkonkraftwerk</h1>
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<br>
|
2022-08-30 11:14:12 +00:00
|
|
|
<p class="fs-5">Balkonkraftwerke oder auch Steckersolaranlagen sind eine einfache Möglichkeiten Stromkosten zu senken. Tagsüber lässt sich dadurch der Grundverbrauch im Haushalt über den eigenerzeugten Strom abdecken.</p>
|
2022-08-30 10:49:27 +00:00
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
@foreach($contents as $content)
|
|
|
|
|
|
|
|
<div class="col-12 col-md-6 mb-5">
|
|
|
|
<a href="{{route_content($content)}}" class="text-decoration-none">
|
|
|
|
<div class="card shadow-sm" style="background-color: #546c8a; color: white;">
|
2022-09-01 18:20:10 +00:00
|
|
|
@if(empty($content->image))
|
2022-08-30 10:49:27 +00:00
|
|
|
<img src="https://picsum.photos/200/100" class="card-img-top img-fluid" alt="...">
|
2022-09-01 18:20:10 +00:00
|
|
|
@else
|
|
|
|
<img src="{{$content->image}}" class="card-img-top img-fluid" alt="...">
|
|
|
|
@endif
|
2022-08-30 10:49:27 +00:00
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{$content->title}}</h5>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
@stop
|