c087d00a2b
Swithced the main nav to a mobile layout to cut down on complex responsive styling to make the heaader work. Also began touching up site wide responsive styles so the site works on multiple devices.
23 lines
640 B
PHP
23 lines
640 B
PHP
@extends('frame')
|
|
|
|
@section('title', 'The Bad Space | Location Info')
|
|
|
|
@section('main-content')
|
|
@parent
|
|
<section>
|
|
<article>
|
|
<h1 class="location-title">{{$title}}</h1>
|
|
<h2>Description</h2>
|
|
{{$location->description}}<br />
|
|
<h2>Screens</h2>
|
|
@if($images != null)
|
|
@foreach($images as $image)
|
|
<a href="/{{$image->path}}" class="location-image" style="background: url(/{{$image->path}}) no-repeat center center / cover #fc6399" />
|
|
</a>
|
|
@endforeach
|
|
@endif
|
|
|
|
<br />UPDATED : {{$updated}}
|
|
</article>
|
|
</section>
|
|
@endsection |