Initial commit
This commit is contained in:
commit
f764004f89
31 changed files with 3907 additions and 0 deletions
15
templates/html.html.twig
Normal file
15
templates/html.html.twig
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>{% block title %}Tailwind CSS workshop{% endblock %}</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
||||
{% block stylesheets %}{% endblock %}
|
||||
</head>
|
||||
<body class="py-20 font-sans bg-blue-600">
|
||||
<div class="container px-4 mx-auto">
|
||||
{% block body %}{% endblock %}
|
||||
</div>
|
||||
{% block javascripts %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue