summaryrefslogtreecommitdiff
path: root/source/_layouts/post.blade.php
blob: 0c824772163953d7ed06e188e5bff4aa95bc4042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@extends('_layouts.master')

@section('article')
    <header>
        <h1>{{$page->title }}</h1>
        <h2>{{ $page->description }}</h2>
        <time datetime="{{ $page->getDate()->format('Y-m-d') }}">
            {{ $page->getDate()->format('M d, Y') }}
        </time> 
    </header>
    @yield('content')
@endsection