This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
memberdb/resources/theme/frontend/metronic/page-404.blade.php

31 lines
923 B
PHP
Raw Normal View History

@extends('layouts.frontend')
@section('page_heading','404: Page Not Found')
@section('section')
<div class="main">
<div class="container">
<!-- BEGIN SIDEBAR & CONTENT -->
<div class="row margin-bottom-40">
<!-- BEGIN CONTENT -->
<div class="col-md-12 col-sm-12">
<div class="content-page page-404">
<div class="number">
404
</div>
<div class="details">
<h3>Oops! You're lost.</h3>
<p>
We can not find the page you're looking for.<br>
<a href="{{ Theme::url('/') }}" class="link">Return home</a> or try the search bar below.
</p>
</div>
</div>
</div>
<!-- END CONTENT -->
</div>
<!-- END SIDEBAR & CONTENT -->
</div>
</div>
@stop