presentations/building-static-websites-sculpin/slides/code/layout-base.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
244 B
Text
Raw Normal View History

2024-05-23 17:09:30 +01:00
{# source/_layouts/base.html.twig #}
<!DOCTYPE html>
<html lang="{{ site.locale|default('en') }}">
2024-08-28 13:00:00 +01:00
<head>
<title>{{ site.name|default('Sculpin Skeleton') }}</title>
</head>
<body>
{% block body %}{% endblock %}
</body>
2024-05-23 17:09:30 +01:00
</html>