jonnybarnes.uk/resources/views/front-page.blade.php

31 lines
1,012 B
PHP
Raw Normal View History

@extends('master')
@section('title')Front Page « @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 ($items as $item)
@switch($item)
@case($item instanceof \App\Models\Note)
@include('templates.note', ['note' => $item])
@break
@case($item instanceof \App\Models\Article)
@include('templates.article', ['article' => $item])
@break
@case($item instanceof \App\Models\Like)
2019-07-26 11:23:02 +01:00
@include('templates.like', ['like' => $item])
@break
@case($item instanceof \App\Models\Bookmark)
<p>This is a bookmark</p>
@break
@endswitch
@endforeach
</div>
@include('templates.bio')
@stop