sculpin-skeleton/source/_layouts/default.html.twig

13 lines
395 B
Twig
Raw Normal View History

2017-10-27 17:55:59 +00:00
<!DOCTYPE html>
2018-12-06 17:46:12 +00:00
<html lang="{{ site.locale|default('en') }}">
2017-10-27 17:55:59 +00:00
<head>
<meta charset="UTF-8">
2018-12-06 17:47:21 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2018-12-06 17:46:41 +00:00
<title>{{ site.name|default('Sculpin Skeleton') }}</title>
2017-10-27 17:55:59 +00:00
</head>
<body>
2018-06-29 06:37:43 +00:00
{% block content %}{% endblock %}
2017-10-27 17:55:59 +00:00
</body>
</html>