22 lines
735 B
PHP
22 lines
735 B
PHP
<!DOCTYPE html>
|
|
<html itemscope itemtype="https://schema.org/WebSite" lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
@include('partials.head')
|
|
|
|
<body>
|
|
<header class="page-header">
|
|
<h1 class="page-title">Past Trips</h1>
|
|
<nav class="other-links">
|
|
<ul>
|
|
<li><p><a href="/">Current trip</a></p></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main id="pastTripsList">
|
|
<ol>
|
|
<li><a href="/x8gkdo56o7k3eyp3w2ql">Monkey Run Scotland 2022</a></li>
|
|
<li><a href="/47xj8go928ql9mq3r20p">Europespedition III: Leds Free or Die Hard</a></li>
|
|
</ol>
|
|
</main>
|
|
</body>
|
|
</html>
|