b3d72e8d82
Add examples/html_examples as a copy-pasteable gallery for the first htmx-style HTML UX patterns using exact htmx URL slugs in the page and README. The slice covers click-to-edit, edit-row, delete-row, inline-validation, click-to-load, and active-search with .heml templates, generated resources, server-owned Rust state, and runtime-free selector targeting. req: htmx_equivalents/001 req: htmx_equivalents/002 req: examples/001
13 lines
299 B
Plaintext
13 lines
299 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>
|
|
<script defer="defer" +src="self.runtime_src"></script>
|
|
</head>
|
|
<body>
|
|
{+= self.body =+}
|
|
</body>
|
|
</html>
|