Skip to content

momoto/momoto.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reminder how to deploy:

  • To see how the site looks like, run hugo server
  • To build static pages, hugo
  • To deploy it to github:
    cd docs
    git add .
    git commit -m "rebuilding site `date`"
    git push origin HEAD:master
    cd ..
    

Directory structure

.
├── archetypes ... templates used when creating new content
├── content .. source contents for this website
├── data .. configuration files that can be used by Hugo when generating your website.
├── layouts .. templates in the form of .html files that specify how views of your content will be rendered into a static website
├── static .. Files that get served statically on the site root
├── themes .. Hugo themes
└── config.toml

Notes