jonnybarnes.uk/resources/views/notes/index.blade.php

25 lines
778 B
PHP

@extends('master')
@section('title')Notes « @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
@if (Request::path() == '/')@include('templates.bio')@endif
@section('scripts')
<link rel="stylesheet" href="/assets/highlight/zenburn.css">
<script defer src="/assets/js/links.js"></script>
@include('templates.mapbox-links')
@stop