mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
- Minimize needless swaps - Centralize logic - Use an actual `<wa-select>` rather than hacking it with `<wa-dropdown>` - Move shared includes to shared template - Rewrite critical theme JS - Refactor of theme picker code - Utilize view transitions better and use them for color scheme too - Do not store default value in localStorage - Removed unused `*-wide` templates - Fixed #482
18 lines
385 B
Plaintext
18 lines
385 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en" data-fa-kit-code="b10bfbde90" data-cdn-url="{% cdnUrl %}">
|
|
<head>
|
|
{% include 'head.njk' %}
|
|
</head>
|
|
<body class="layout-{{ layout | stripExtension }}">
|
|
|
|
{% block header %}{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ content | safe }}
|
|
{% endblock %}
|
|
|
|
{% block afterContent %}{% endblock %}
|
|
|
|
</body>
|
|
</html>
|