asklyphe/asklyphe-frontend/templates/shell.html
Evie Viau 95ba628934
Some checks failed
/ build-all-services (push) Has been cancelled
feature: Implement random theme and theme enum
For task T155
2025-03-19 20:58:23 -07:00

22 lines
666 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AskLyphe - {% block title %}{% endblock %}</title>
<link rel="search"
type="application/opensearchdescription+xml"
title="AskLyphe"
href="/static/osd.xml" />
<link rel="stylesheet" href="/static/themes/default/shell.css" />
<link rel="stylesheet" href="/static/themes/{{theme.internal_name()}}/shell.css" />
{% block head %}{% endblock %}
</head>
<body>
{% block page %}{% endblock %}
</body>
</html>