100-Days-Of-Code/Visual Studio Code Projects/day-62-starting-files-coffee-and-wifi/templates/base.html

22 lines
479 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
{% block styles %}
<!-- Load Bootstrap-Flask CSS here -->
<!-- Link to the styles.css here to apply styling to all the child templates.-->
{% endblock %}
<title>{% block title %}{% endblock %}</title>
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>