其他分享
首页 > 其他分享> > blog系统-安装hugo

blog系统-安装hugo

作者:互联网

文章目录

hugo搭建静态博客,这里演示mac

工具

安装

使用

建立站点

hugo new site blogs

看一下目录

.
├── archetypes
│   └── default.md // 这里是模版文件
├── config.toml // 这里是配置文件
├── content // 这里是文件内容
├── data
├── layouts
├── static
└── themes

6 directories, 2 files

安装一个主题,比较简单

// 这个主题比较简洁一点
git clone https://github.com/adityatelange/hugo-PaperMod themes/hugo-PaperMod --depth=1
baseURL: "http://dreamcat.ink/blog"
title: Dreamcat
paginate: 8
theme: hugo-PaperMod
enableInlineShortcodes: true
enableRobotsTXT: true

# googleAnalytics: UA-123-45

minify:
    disableXML: true
    # minifyOutput: true

languages:
    en:
        languageName: "English"
        weight: 1
        menu:
            main:
                - name: Archive
                  url: archives
                  weight: 5
                - name: Search
                  url: search/
                  weight: 10
                - name: Tags
                  url: tags/
                  weight: 10

    l2:
        languageName: "Lang2"
        weight: 2
        title: PaperModL2
        profileMode:
            enabled: true
            title: PaperMod
            # imageUrl: "#"
            # imageTitle: my image
            # imageWidth: 120
            # imageHeight: 120
            subtitle: "☄️ Fast | ☁️ Fluent | 

标签:name,weight,url,安装,PaperMod,hugo,blog,true
来源: https://blog.csdn.net/weixin_43884073/article/details/115047713