diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-10-07 15:15:58 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-10-07 15:15:58 +0200 |
commit | a1ed7b9f9954618e2ed4e14dd2dd3215ba7afd7d (patch) | |
tree | 5ce01882fb28f786ce6c362cb51d8809d641284c /ss/as/html.scm | |
parent | 656bca99b0b4c7130855cb01b30b944d4dcb4d12 (diff) |
API: move `src` to `ss`
Diffstat (limited to 'ss/as/html.scm')
-rw-r--r-- | ss/as/html.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ss/as/html.scm b/ss/as/html.scm new file mode 100644 index 0000000..743a77c --- /dev/null +++ b/ss/as/html.scm @@ -0,0 +1,9 @@ +(define-module (ss as html) + #:use-module (ss dates) + #:use-module ((ss html) #:prefix html:) + #:declarative? #f) + +(define main html:index) +(define post html:post) +(define person html:person) +(define media html:media) |