18 lines
473 B
PHP
18 lines
473 B
PHP
<!DOCTYPE html>
|
|
<html itemscope itemtype="https://schema.org/WebSite" lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
@include('partials.head')
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<h1 class="page-title">No Trip in Progress at the Moment</h1>
|
|
<nav class="other-pages">
|
|
<ul>
|
|
<li><p><a href="/past-trips">Past trips</a></p></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
</body>
|
|
|
|
</html>
|