mirror of
https://github.com/SakanaAI/doc-to-lora.git
synced 2026-07-23 17:01:04 +02:00
22 lines
No EOL
447 B
HTML
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> |