This is a HUGO website, using GitHub Pages to host the website. Animations courtesy of Vanta.js. The theme is Paper++, a customized version of PaperMod, which I intend to fork and make public in the future.
├── 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/ # This repo uses a custom version of the PaperMod 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. Have a nice day!