florida-drupalcamp-tailwindcss/templates/html.html.twig

14 lines
372 B
Twig
Raw Normal View History

2020-12-26 21:23:15 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Florida DrupalCamp{% endblock %}</title>
<link rel="stylesheet" href="/build/tailwind.css"/>
2020-12-26 21:23:15 +00:00
{% block stylesheets %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block javascripts %}{% endblock %}
</body>
</html>