This repository has been archived on 2022-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
socialtree-jigsaw/source/_layouts/main.blade.php
2022-05-04 13:04:24 +02:00

18 lines
653 B
PHP

<!DOCTYPE html>
<html lang="{{ $page->language ?? 'en' }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="{{ $page->getUrl() }}">
<meta name="description" content="{{ $page->description }}">
<title>{{ $page->author . " | " . $page->title }}</title>
@if ($page->design == '98')
<link rel="stylesheet" href="https://unpkg.com/98.css" />
@endif
<link rel="stylesheet" href="{{ mix('css/'. $page->design. '.css', 'assets/build') }}">
</head>
<body>
@yield('body')
</body>
</html>