unch-cms/public/themes/default/layouts/layout.blade.php

27 lines
459 B
PHP
Raw Normal View History

2022-09-02 11:25:50 +07:00
<!DOCTYPE html>
<html lang="en">
<head>
{!! meta_init() !!}
<meta name="keywords" content="@get('keywords')">
<meta name="description" content="@get('description')">
<meta name="author" content="@get('author')">
<title>@get('title')</title>
@styles()
</head>
<body>
@partial('header')
@content()
@partial('footer')
@scripts()
</body>
</html>