Where-in-the-World-is-Ben/resources/views/no-trip.blade.php

19 lines
473 B
PHP
Raw Normal View History

2022-09-21 19:40:14 +00:00
<!DOCTYPE html>
2022-10-29 23:49:19 +00:00
<html itemscope itemtype="https://schema.org/WebSite" lang="{{ str_replace('_', '-', app()->getLocale()) }}">
2022-10-29 23:23:02 +00:00
@include('partials.head')
2022-09-21 19:40:14 +00:00
<body>
<header>
2022-09-24 19:36:06 +00:00
<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>
2022-09-21 19:40:14 +00:00
</header>
</body>
</html>