2024-06-03 07:04:29 -07:00

1.9 KiB

type, assigned, created, updated
type assigned created updated
topic 2024-01-06T01:25:36.062Z 2024-01-06T01:25:36.062Z

Hugo

Install

winget install Hugo.Hugo.Extended

Run

l:
cd git
hugo new site quickstart
cd quickstart
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
echo "theme = 'ananke'" >> hugo.toml
code-insiders .
hugo server

Work

hugo new posts/my-first-post.md
hugo server --buildDrafts
hugo server -D

Themes

git submodule add https://github.com/hugo-sid/hugo-blog-awesome.git themes/hugo-blog-awesome

Support

l:
cd git
git clone https://github.com/maximevaillancourt/digital-garden-jekyll-template.git
cd digital-garden-jekyll-template
mkdir "L:\Git\quartz\content\cyberpunk-red"
"C:\Users\phares\AppData\Local\IFXApps\obsidian-export\obsidian-export_Windows-x64_64.exe" "D:\Documents\Notes\Cyberpunk-Red\TTRPG\Cyberpunk Red" "L:\Git\quartz\content\cyberpunk-red"
{{if $.Site.Data.config.enableTable}}
<table>
    <thead>
        <tr>
            {{ range $k, $v := .Params }}
            <td>
                {{ $k }}
            </td>
            {{ end }}
        </tr>
    </thead>
    <tbody>
        <tr>
            {{ range $k, $v := .Params }}
            <td>
                {{ $v }}
            </td>
            {{ end }}
        </tr>
    </tbody>
</table>
{{end}}