protevus/views/layout.jael

17 lines
425 B
Text
Raw Permalink Normal View History

2017-10-19 21:53:33 +00:00
<!DOCTYPE html>
<html>
<head>
<title>{{ title ?? 'Angel' }}</title>
2022-03-15 05:25:51 +00:00
<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">
2017-10-19 21:53:33 +00:00
<link rel="icon" href="/images/favicon.png">
</head>
<body>
<div class="container">
<div class="content">
<block name="content"></block>
</div>
</div>
</body>
</html>