mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
Fix Public View & add General Config
This commit is contained in:
@@ -8,15 +8,15 @@
|
||||
@endif
|
||||
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
|
||||
<ol class="carousel-indicators">
|
||||
@foreach ($pictures as $picture)
|
||||
<li data-target="#carouselExampleIndicators" data-slide-to="0"></li>
|
||||
@endforeach
|
||||
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
|
||||
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
|
||||
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
|
||||
</ol>
|
||||
<div class="carousel-inner">
|
||||
@foreach ($pictures as $picture)
|
||||
<div class="carousel-item">
|
||||
<img class="d-block w-100" src="{{$picture->url}}" alt="{{$picture->title}}">
|
||||
</div>
|
||||
@foreach($pictures as $picture)
|
||||
<div class="carousel-item @if($loop->first) active @endif">
|
||||
<img class="d-block w-100" src="{{$picture->url}}" alt="First slide">
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
|
||||
|
||||
Reference in New Issue
Block a user