jonnybarnes.uk/resources/views/singleplace.blade.php

21 lines
620 B
PHP
Raw Normal View History

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')
@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