17 lines
363 B
PHP
17 lines
363 B
PHP
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>url snail</title>
|
||
|
@vite(['resources/sass/app.scss'])
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<header>
|
||
|
<h1><a href="{{ url("/") }}">url snail</a></h1>
|
||
|
<a href="{{ action('BookmarkController@create') }}">+</a>
|
||
|
</header>
|
||
|
{{ $slot }}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|