| Crates.io | htmpl |
| lib.rs | htmpl |
| version | 0.0.1 |
| created_at | 2024-10-04 17:18:48.221081+00 |
| updated_at | 2024-10-04 17:18:48.221081+00 |
| description | htmpl is a library for generating HTML files from HTML templates. |
| homepage | https://cceckman.com/r/htmpl |
| repository | https://cceckman.com/r/htmpl |
| max_upload_size | |
| id | 1396817 |
| size | 50,760 |
htmpl is a library for generating HTML files from HTML templates.
<htmpl-query name="posts">SELECT title, text, draft FROM posts;</htmpl-query>
<htmpl-foreach query="posts">
<h1>
<htmpl-insert query="posts(title)"></htmpl-insert>
<htmpl-if true="posts(draft)"> (Draft)</htmpl-if></h1>
<p><htmpl-insert query="posts(text)"></htmpl-insert></p>
</htmpl-foreach>
See the documentation (src/lib.md) for more details.