forked from projects/thebadspace
650e67a799
Tweaked the about page to include some langauge talking about where the data is coming from and how it's being used and linking to the respective sources
34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
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 />
|
|
@if($location->rating == 'silence')
|
|
<img class="rating-icon" src="/assets/images/global/status-silence.svg" title="silenced" />
|
|
<strong>Silenced Count: {{$location->block_count}}</strong>
|
|
@else
|
|
<img class="rating-icon" src="/assets/images/global/status-suspend.svg" title="suspended" />
|
|
<strong>Suspended Count: {{$location->block_count}}</strong>
|
|
|
|
@endif
|
|
<br />
|
|
This count reflects the number of times this instance has been suspended or silenced be two or more <a href="http://thebadspace.local/about#how">Current Sources</a>
|
|
|
|
<br />UPDATED : {{$updated}}
|
|
</article>
|
|
</section>
|
|
@endsection |