2016-05-19 15:01:28 +01:00
|
|
|
@extends('master')
|
|
|
|
|
|
|
|
@section('title')
|
2016-12-10 11:48:17 +00:00
|
|
|
{{ $place->name }} « Places «
|
2016-05-19 15:01:28 +01:00
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="h-card">
|
|
|
|
<h1 class="p-name">{{ $place->name }}</h1>
|
|
|
|
<p class="p-note">{{ $place->description or 'No description'}}</p>
|
|
|
|
<div class="map" data-latitude="{{ $place->latitude }}" data-longitude="{{ $place->longitude }}"></div>
|
|
|
|
<p class="latlnginfo">Latitude: <span class="p-latitude">{{ $place->latitude }}</span>, longitude: <span class="p-longitude">{{ $place->longitude }}</span></p>
|
|
|
|
</div>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('scripts')
|
2016-09-14 18:31:57 +01:00
|
|
|
@include('templates.mapbox-links')
|
2016-05-19 15:01:28 +01:00
|
|
|
|
2016-07-18 10:30:49 +01:00
|
|
|
<script src="/assets/js/maps.js"></script>
|
2016-05-19 15:01:28 +01:00
|
|
|
@stop
|