├── LICENSE ├── README.org ├── go.mod ├── layouts ├── partials │ ├── debugprint.css │ └── debugprint.html └── shortcodes │ └── debug.html └── theme.toml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushalmodi/hugo-debugprint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushalmodi/hugo-debugprint/HEAD/README.org -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/kaushalmodi/hugo-debugprint 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /layouts/partials/debugprint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushalmodi/hugo-debugprint/HEAD/layouts/partials/debugprint.css -------------------------------------------------------------------------------- /layouts/partials/debugprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushalmodi/hugo-debugprint/HEAD/layouts/partials/debugprint.html -------------------------------------------------------------------------------- /layouts/shortcodes/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushalmodi/hugo-debugprint/HEAD/layouts/shortcodes/debug.html -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushalmodi/hugo-debugprint/HEAD/theme.toml --------------------------------------------------------------------------------