Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kaushalmodi/hugo-debugprint
Hugo "debugprint.html" partial
https://github.com/kaushalmodi/hugo-debugprint
debug hugo hugo-theme-component
Last synced: 16 days ago
JSON representation
Hugo "debugprint.html" partial
- Host: GitHub
- URL: https://github.com/kaushalmodi/hugo-debugprint
- Owner: kaushalmodi
- License: gpl-3.0
- Created: 2018-06-11T01:31:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-20T17:47:00.000Z (almost 3 years ago)
- Last Synced: 2024-10-12T22:29:47.586Z (about 1 month ago)
- Topics: debug, hugo, hugo-theme-component
- Language: HTML
- Homepage: https://hugo-bare-min.netlify.com/
- Size: 38.1 KB
- Stars: 52
- Watchers: 6
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
This is not a standalone theme. This is a Hugo theme component or
module.* Installing this component
** Install as a Hugo Module
*** Requirements
You need to install the latest version of Go from
https://go.dev/doc/install because this theme component requires [[https://gohugo.io/hugo-modules/use-modules/][~hugo
mod ..~ commands]] to work.This update on switch to using Hugo Modules was last tested with Hugo
v0.92.0.
*** Steps
Add this to your site's TOML config file:#+begin_src conf-toml
[module]
[[module.imports]]
path = "github.com/kaushalmodi/hugo-debugprint"
#+end_src
*** To update this component
Run the below command from your Hugo site's directory:#+begin_src shell
hugo mod get -u
#+end_src
** Install as repository below ~themes~
1. Clone this repo to ~your-site/themes/hugo-debugprint~ directory.
2. Add "hugo-debugprint" as the left-most element of the ~theme~ list
variable in your site's or theme's ~config.toml~. Example:
#+begin_example
theme = ["hugo-debugprint", "my-theme"]
#+end_example