diff options
| author | 2026-02-04 18:29:56 +0300 | |
|---|---|---|
| committer | 2026-02-04 18:29:56 +0300 | |
| commit | 3b878003944e5c671b65d5dd135b9ad298681293 (patch) | |
| tree | c675837fc6fea6c52300ab7863c67600fb618d8a /.zk/templates | |
| download | zk-3b878003944e5c671b65d5dd135b9ad298681293.tar.gz zk-3b878003944e5c671b65d5dd135b9ad298681293.tar.bz2 zk-3b878003944e5c671b65d5dd135b9ad298681293.tar.lz zk-3b878003944e5c671b65d5dd135b9ad298681293.tar.xz zk-3b878003944e5c671b65d5dd135b9ad298681293.tar.zst zk-3b878003944e5c671b65d5dd135b9ad298681293.zip | |
feat: initial commit
Diffstat (limited to '')
| -rw-r--r-- | .zk/templates/default.md | 14 | ||||
| -rw-r--r-- | .zk/templates/huge-idea.md | 18 | ||||
| -rw-r--r-- | .zk/templates/invention.md | 21 | ||||
| -rw-r--r-- | .zk/templates/knowledge.md | 18 | ||||
| -rw-r--r-- | .zk/templates/reference.md | 18 | ||||
| -rw-r--r-- | .zk/templates/rethought.md | 21 | ||||
| -rw-r--r-- | .zk/templates/tiny-idea.md | 21 |
7 files changed, 131 insertions, 0 deletions
diff --git a/.zk/templates/default.md b/.zk/templates/default.md new file mode 100644 index 0000000..90a496c --- /dev/null +++ b/.zk/templates/default.md @@ -0,0 +1,14 @@ +--- +id: {{id}} +date: {{format-date now "%FT%T%z"}} +languages: [] +aliases: + +reviews: + +tags: +- draft +--- +# {{title}} + +{{content}} diff --git a/.zk/templates/huge-idea.md b/.zk/templates/huge-idea.md new file mode 100644 index 0000000..b32ed6a --- /dev/null +++ b/.zk/templates/huge-idea.md @@ -0,0 +1,18 @@ +--- +id: {{id}} +date: {{format-date now "%FT%T%z"}} +languages: [] +aliases: + +reviews: + +tags: +- draft +- huge idea +--- +# {{title}} + +{{content}} + +## Down +- diff --git a/.zk/templates/invention.md b/.zk/templates/invention.md new file mode 100644 index 0000000..b80298f --- /dev/null +++ b/.zk/templates/invention.md @@ -0,0 +1,21 @@ +--- +id: {{id}} +date: {{format-date now "%FT%T%z"}} +languages: [] +aliases: + +reviews: + +tags: +- draft +- invention +--- +# {{title}} + +{{content}} + +## Up +- + +## Down +- diff --git a/.zk/templates/knowledge.md b/.zk/templates/knowledge.md new file mode 100644 index 0000000..ac399cd --- /dev/null +++ b/.zk/templates/knowledge.md @@ -0,0 +1,18 @@ +--- +id: {{id}} +date: {{format-date now "%FT%T%z"}} +languages: [] +aliases: + +reviews: + +tags: +- draft +- knowledge +--- +# {{title}} + +{{content}} + +## Up +- diff --git a/.zk/templates/reference.md b/.zk/templates/reference.md new file mode 100644 index 0000000..9117fb9 --- /dev/null +++ b/.zk/templates/reference.md @@ -0,0 +1,18 @@ +--- +id: {{id}} +date: {{format-date now "%FT%T%z"}} +languages: [] +aliases: + +reviews: + +tags: +- draft +- reference +--- +# {{title}} + +{{content}} + +## Up +- diff --git a/.zk/templates/rethought.md b/.zk/templates/rethought.md new file mode 100644 index 0000000..09ca9a3 --- /dev/null +++ b/.zk/templates/rethought.md @@ -0,0 +1,21 @@ +--- +id: {{id}} +date: {{format-date now "%FT%T%z"}} +languages: [] +aliases: + +reviews: + +tags: +- draft +- rethought +--- +# {{title}} + +{{content}} + +## Up +- + +## Down +- diff --git a/.zk/templates/tiny-idea.md b/.zk/templates/tiny-idea.md new file mode 100644 index 0000000..834db7c --- /dev/null +++ b/.zk/templates/tiny-idea.md @@ -0,0 +1,21 @@ +--- +id: {{id}} +date: {{format-date now "%FT%T%z"}} +languages: [] +aliases: + +reviews: + +tags: +- draft +- tiny idea +--- +# {{title}} + +{{content}} + +## Up +- + +## Down +- |
