From b7784272ebf77fdaef6a6a265228a2a096337296 Mon Sep 17 00:00:00 2001 From: Yusuf Bera Ertan Date: Sun, 14 Aug 2022 12:44:25 +0300 Subject: [PATCH] we do a little themingg s --- index.yaml | 7 ++ notes/exporting ssh key from gpg.md | 7 +- posts/2021-05-16_Hello world!.md | 4 +- templates/components/footer.tpl | 41 ++++++++++ templates/components/note-title.tpl | 6 ++ templates/components/pandoc.tpl | 107 ++++++++++++++++++++++++++ templates/components/sidebar-tree.tpl | 80 +++++++++++++++++++ templates/layouts/book.tpl | 78 +++++++++++++++++++ templates/special/base.tpl | 15 ++++ templates/special/index.tpl | 9 +++ templates/special/tagindex.tpl | 75 ++++++++++++++++++ templates/special/tasks.tpl | 51 ++++++++++++ 12 files changed, 478 insertions(+), 2 deletions(-) create mode 100644 templates/components/footer.tpl create mode 100644 templates/components/note-title.tpl create mode 100644 templates/components/pandoc.tpl create mode 100644 templates/components/sidebar-tree.tpl create mode 100644 templates/layouts/book.tpl create mode 100644 templates/special/base.tpl create mode 100644 templates/special/index.tpl create mode 100644 templates/special/tagindex.tpl create mode 100644 templates/special/tasks.tpl diff --git a/index.yaml b/index.yaml index 48f6700..3a45675 100644 --- a/index.yaml +++ b/index.yaml @@ -2,3 +2,10 @@ page: siteTitle: gaze.systems siteName: gaze.systems +template: + iconUrl: resources/GazeOfficeIcon.webp + theme: purple + urlStrategy: pretty + layout: + base: + bodyClass: bg-black diff --git a/notes/exporting ssh key from gpg.md b/notes/exporting ssh key from gpg.md index ab910ac..604dca0 100644 --- a/notes/exporting ssh key from gpg.md +++ b/notes/exporting ssh key from gpg.md @@ -1,3 +1,7 @@ +--- +tags: [gpg,ssh] +--- + - gpg --export-secret-ssh-key doesn't work - gpg --export-ssh-key works to export public key @@ -5,4 +9,5 @@ - to export secret ssh key first remove password from your [A]uthentication subkey - you can do this with `gpg --edit-key KEYID` and then `passwd` and `save` -- then do `gpg --export-secret-subkeys KEYID! | openpgp2ssh KEYID > ssh_key` \ No newline at end of file +- then do `gpg --export-secret-subkeys KEYID! | openpgp2ssh KEYID > ssh_key` + diff --git a/posts/2021-05-16_Hello world!.md b/posts/2021-05-16_Hello world!.md index a211a64..6533344 100644 --- a/posts/2021-05-16_Hello world!.md +++ b/posts/2021-05-16_Hello world!.md @@ -1 +1,3 @@ -First! \ No newline at end of file +First! + +- [ ] actually write something proper diff --git a/templates/components/footer.tpl b/templates/components/footer.tpl new file mode 100644 index 0000000..e79005d --- /dev/null +++ b/templates/components/footer.tpl @@ -0,0 +1,41 @@ + \ No newline at end of file diff --git a/templates/components/note-title.tpl b/templates/components/note-title.tpl new file mode 100644 index 0000000..198c567 --- /dev/null +++ b/templates/components/note-title.tpl @@ -0,0 +1,6 @@ +

+ + + +

\ No newline at end of file diff --git a/templates/components/pandoc.tpl b/templates/components/pandoc.tpl new file mode 100644 index 0000000..1deafe6 --- /dev/null +++ b/templates/components/pandoc.tpl @@ -0,0 +1,107 @@ + + +

+ +

+
+ + + + + + + + + + + + + + + + +
+
+ +
+
+ +
+ +
+
+ +
+ +
+
+ +
+
+
+
+
+
+
+ + + + + + + +
+
Footnotes
+ +
+
+ . +
+
+ +
+
+
+
+
+ + +
    + +
  • + +
  • +
    +
+
+ +
    + +
  • + +
  • +
    +
+
+ + + + + + + + +
+

+

+

+

+

+
+
+ +
\ No newline at end of file diff --git a/templates/components/sidebar-tree.tpl b/templates/components/sidebar-tree.tpl new file mode 100644 index 0000000..5c9eac1 --- /dev/null +++ b/templates/components/sidebar-tree.tpl @@ -0,0 +1,80 @@ + + + font-bold text-${theme}-600 hover:underline + + + + font-bold hover:underline + + hover:underline + + + hover:underline + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + +
+ + + + + + + +
\ No newline at end of file diff --git a/templates/layouts/book.tpl b/templates/layouts/book.tpl new file mode 100644 index 0000000..f3285b8 --- /dev/null +++ b/templates/layouts/book.tpl @@ -0,0 +1,78 @@ + + +
+ + + +
+ + + + +
+
+ + +
+ + +
+ + +
+
+
+ +
+
+
\ No newline at end of file diff --git a/templates/special/base.tpl b/templates/special/base.tpl new file mode 100644 index 0000000..278c121 --- /dev/null +++ b/templates/special/base.tpl @@ -0,0 +1,15 @@ + + +
+
+

+ +

+
+ +
+
+ +
+
+
\ No newline at end of file diff --git a/templates/special/index.tpl b/templates/special/index.tpl new file mode 100644 index 0000000..c1b45c5 --- /dev/null +++ b/templates/special/index.tpl @@ -0,0 +1,9 @@ + + +
+ + + +
+
+
\ No newline at end of file diff --git a/templates/special/tagindex.tpl b/templates/special/tagindex.tpl new file mode 100644 index 0000000..56f5d66 --- /dev/null +++ b/templates/special/tagindex.tpl @@ -0,0 +1,75 @@ + + +
+ +
+ + +
+ + + + + + + + + + + (+) + + + +
+
+
+ + +
+ + + + + + + + + +
+
+
+
+
+
+
\ No newline at end of file diff --git a/templates/special/tasks.tpl b/templates/special/tasks.tpl new file mode 100644 index 0000000..59d3896 --- /dev/null +++ b/templates/special/tasks.tpl @@ -0,0 +1,51 @@ + + +
+
+ + +
+
+ + +
  • + + + + \ +
  • +
    +
    + +
    + + + +
    +
    +
    + + +
    + + + + + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    \ No newline at end of file