misuzu/templates/auth/master.twig

15 lines
422 B
Twig
Raw Normal View History

2018-03-22 02:56:41 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Authentication</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
2018-07-21 23:54:12 +00:00
<link href="{{ '/css/auth.css'|asset_url }}" rel="stylesheet" type="text/css">
2018-03-22 02:56:41 +00:00
</head>
<body>
<div class="auth">
{{ block('content') is defined ? block('content') : '' }}
</div>
</body>
</html>