Initial commit
This commit is contained in:
commit
b7ec14402d
70 changed files with 10513 additions and 0 deletions
13
source/_layouts/app.html.twig
Normal file
13
source/_layouts/app.html.twig
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="{{ site.locale|default('en') }}">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ site.name|default('Sculpin Skeleton') }}</title>
|
||||
<link rel="stylesheet" href="/build/tailwind.css">
|
||||
</head>
|
||||
<body class="font-sans text-lg text-gray-800">
|
||||
{% block body %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
7
source/_layouts/default.html.twig
Normal file
7
source/_layouts/default.html.twig
Normal file
|
@ -0,0 +1,7 @@
|
|||
{% extends 'app' %}
|
||||
|
||||
{% block body %}
|
||||
<div class="p-10 mx-auto max-w-4xl">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue