This is a HUGO website for my Logseq notes graph, using GitHub Pages to host the website, logseq-schrodinger to export the Logseq pages, and utterances to manage comments.
├── archetypes/
│ └── default.md
├── content/ # Where content is stored
│ ├── assets/ # Things from LogseqGraph/assets, used in posts.
│ │ └── test.png
│ ├── pages/ # Revised Logseq pages with metadata sections for Hugo.
│ │ └── random page from logseq.md
│ ├── archives.md
│ └── search.md
├── .github/ # Define GitHub action to help deploy in one click.
│ └── workflows/
│ └── publish.yml
├── layouts/ # Layout definitions
│ ├── partials/
│ │ └── backlinks.html # Simulate backlinks function in Hugo.
│ └── shortcodes/
│ ├── logseq/ # Translation between Logseq and Hugo.
│ │ ├── mark.html
│ │ ├── orgCAUTION.html
│ │ ├── orgEXAMPLE.html
│ │ ├── orgIMPORTANT.html
│ │ ├── orgNOTE.html
│ │ ├── orgPINNED.html
│ │ ├── orgQUOTE.html
│ │ ├── orgTIP.html
│ │ └── orgWARNING.html
│ ├── contact.html
│ ├── hint.html
│ └── search.html
├── themes/
│ └── random-theme/ # In this repo, PaperMod is the default theme.
├── config.yml # The main settings page for the website.
└── .gitignore # This is to prevent unwanted files be tracked by Git.
Distributed under the MIT License. See LICENSE
for more information.