doc-to-lora/webui/templates/base.html
2024-12-23 14:58:16 +00:00

22 lines
No EOL
447 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{% block title %}My Web App{% endblock %}</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
body {
font-family: 'DM Sans', sans-serif;
}
/* Add any other common styles here */
</style>
{% block head %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>