cfa4502748
- Move CSS out of app_shell.heml into app.css served by the app. - Remove direct hemx::advanced::Effect import from example code; rely on IntoEffect. - Update README to not mention raw Effect:: APIs. - Keep generated resources and tiny runtime behavior only. req: examples/001 req: htmx_equivalents/001 req: htmx_equivalents/002
14 lines
335 B
Plaintext
14 lines
335 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>hemx HTML examples</title>
|
|
<link rel="stylesheet" href="/app.css">
|
|
<script +src="self.runtime_src" defer></script>
|
|
</head>
|
|
<body>
|
|
{+= self.body =+}
|
|
</body>
|
|
</html>
|