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

31 lines
765 B
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
@extends('master')
@section('title')
Notes « Jonny Barnes
@stop
@section('content')
<div class="h-feed">
<!-- the following span stops microformat parses going haywire generating
a name property for the h-feed -->
<span class="p-name"></span>
@foreach ($notes as $note)
<div class="h-entry">
@include('templates.note', ['note' => $note])
</div>
@endforeach
</div>
{!! $notes->render() !!}
@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/bower/Autolinker.min.js"></script>
<script src="/assets/js/links.js"></script>
<script src="/assets/js/maps.js"></script>
2016-05-19 15:01:28 +01:00
2016-07-18 10:30:49 +01:00
<script src="/assets/prism/prism.js"></script>
<link rel="stylesheet" href="/assets/prism/prism.css">
2016-05-19 15:01:28 +01:00
@stop