mapguesser/views/templates/layout_minimal.php

14 lines
293 B
PHP
Raw Normal View History

2020-06-28 03:16:48 +02:00
@extends('templates/mapguesser')
@section('content')
<header>
<h1>
<img class="inline" width="1em" height="1em" src="<?= $_ENV['STATIC_ROOT'] ?>/img/icon.svg?rev=<?= REVISION ?>"><!--
--><?= $_ENV['APP_NAME'] ?>
</h1>
</header>
<main>
@yields('main')
</main>
@endsection