aboutsummaryrefslogtreecommitdiff
path: root/global.ha
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-13 20:17:19 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-13 20:17:19 +0800
commit3c3c383a9d6dec77e93272483699b3aef2c1dd47 (patch)
treedea1d4018a38b38fb4f8558b6279676dfda344e9 /global.ha
parentNote that patches are required on top of hare-http (diff)
downloadforge-3c3c383a9d6dec77e93272483699b3aef2c1dd47.tar.gz
forge-3c3c383a9d6dec77e93272483699b3aef2c1dd47.tar.zst
forge-3c3c383a9d6dec77e93272483699b3aef2c1dd47.zip
Partially port templates used by the index page
Diffstat (limited to '')
-rw-r--r--global.ha11
1 files changed, 11 insertions, 0 deletions
diff --git a/global.ha b/global.ha
new file mode 100644
index 0000000..11d7886
--- /dev/null
+++ b/global.ha
@@ -0,0 +1,11 @@
+let global: struct {
+ title: str,
+ version: str,
+ ssh_pubkey: str,
+ ssh_fp: str,
+} = struct {
+ title: str = "Test Forge",
+ version: str = "v0.0.0",
+ ssh_pubkey: str = "pubkey",
+ ssh_fp: str = "fp",
+};