33 lines
910 B
PHP
33 lines
910 B
PHP
|
<!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>
|
||
|
|
||
|
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
|
||
|
<!-- Google fonts-->
|
||
|
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
|
||
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css" />
|
||
|
|
||
|
@styles()
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
@partial('header')
|
||
|
|
||
|
@content()
|
||
|
|
||
|
@partial('footer')
|
||
|
|
||
|
@scripts()
|
||
|
</body>
|
||
|
|
||
|
</html>
|
||
|
|
||
|
|