315 shaares
CREAR SITIO
hugo new site MySite
cd MySite
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke themes/ananke
echo "theme = 'ananke'" >> config.toml
hugo server
AÑADIR CONTENIDO
hugo new posts/my-first-post.md
PUBLICAR SITIO
hugo //PUBLICA SITIO ESTÁTICO RESULTADO AL DIRECTORIO PUBLIC
─$ tree -d -L 3
└── MySite
├── archetypes
├── content
├── data
├── layouts
├── public
│ ├── assets
│ ├── categories
│ ├── page
│ └── tags
├── resources
│ └── _gen
├── static
└── themes
└── hugo-PaperMod