About Hugo

Posted by Hugo Authors on Thu, Feb 28, 2019
Total Views:

Written in Go, Hugo is an open source static site generator available under the Apache Licence 2.0. Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.

Hugo makes use of a variety of open source projects including:

Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.

Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.

Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.

Learn more and contribute on GitHub.

内容总结

  • 建站流程

    • 创建
      • hugo new site xxx
      • 下载优质皮肤
      • 调试
        • hugo server
          • -D
      • 修改配置文件
      • hugo new
        • content/posts/xx.md
          • 具体文件的路径
        • 生成带有图片的 md 的文件结构
          • posts/first
            • first.md
            • imgs
              • 1.jpg
              • 2.jpg
    • 生成
      • hugo
        • -D 包含draft
      • 生成的静态网站
        • public
          • 关联 pages
          • 查看结构得出结论
            • static 内的文件直接生成在根目录
  • module

  • 博客分类

    • md 文件顶部,设置 tags=[]
  • 头部导航栏固定

    • fixed-top
1
2
3
4
5
hugo new site xxx
hugo server -D
hugo new xxxx/xxx/xxxx.md

hugo