protevus/views/layout.jael
2022-03-15 13:25:51 +08:00

17 lines
No EOL
425 B
Text

<!DOCTYPE html>
<html>
<head>
<title>{{ title ?? 'Angel' }}</title>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lato:100" >
<link rel="stylesheet" type="text/css" href="/css/site.css">
<link rel="icon" href="/images/favicon.png">
</head>
<body>
<div class="container">
<div class="content">
<block name="content"></block>
</div>
</div>
</body>
</html>