Files
website/resources/views/layout/app.blade.php
2026-03-22 19:00:00 +01:00

23 lines
515 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>c3gov - {{ __('app.subtitle') }}</title>
<link rel="stylesheet" href="{{ asset("css/style.css") }}">
</head>
<body>
<span class="header">
<img id="logo" src="{{ asset("Bilder/logo.png") }}" alt="{{ __('app.logo') }}">
</span>
<span class="ticker">
<marquee>Dies ist ein Text. -- Gut, oder?</marquee>
</span>
<span class="navbar"></span>
<span class="content">
@component($page)
@endcomponent
</span>
</body>
</html>