├── .github └── workflows │ └── upload.yml ├── README.md ├── archetypes └── default.md ├── config.toml ├── layouts ├── _default │ ├── baseof.html │ ├── list.html │ ├── rss.xml │ └── single.html ├── partials │ ├── nav.html │ ├── nextprev.html │ └── taglist.html └── shortcodes │ ├── hidvid.html │ ├── img.html │ ├── tagcloud.html │ └── vid.html └── static ├── rss.svg └── style.css /.github/workflows/upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/.github/workflows/upload.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/config.toml -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/_default/rss.xml -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/partials/nav.html -------------------------------------------------------------------------------- /layouts/partials/nextprev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/partials/nextprev.html -------------------------------------------------------------------------------- /layouts/partials/taglist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/partials/taglist.html -------------------------------------------------------------------------------- /layouts/shortcodes/hidvid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/shortcodes/hidvid.html -------------------------------------------------------------------------------- /layouts/shortcodes/img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/shortcodes/img.html -------------------------------------------------------------------------------- /layouts/shortcodes/tagcloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/shortcodes/tagcloud.html -------------------------------------------------------------------------------- /layouts/shortcodes/vid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/layouts/shortcodes/vid.html -------------------------------------------------------------------------------- /static/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/static/rss.svg -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeSmithxyz/lugo/HEAD/static/style.css --------------------------------------------------------------------------------