Files
sage/templates/404.blade.php
2016-12-06 15:24:15 -08:00

15 lines
333 B
PHP

@extends('layouts.base')
@section('content')
@include('partials.page-header')
@if (!have_posts())
<div class="alert alert-warning">
{{ __('Sorry, but the page you were trying to view does not exist.', 'sage') }}
</div>
{!! get_search_form(false) !!}
@endif
{!! get_the_posts_navigation() !!}
@endsection