1. 自定义页面的keywords,posts/mykewords-example.md ``` --- title: "First" date: 2019-11-01T16:08:13+08:00 draft: false tags: ["aws"] keywords: ["aws","first"] --- ``` 2. layouts/partials/head.html ``` {{ with .Params.keywords }}<meta name="keywords" content="{{ range $i, $e := . }}{{ if $i }} {{ end }}{{ $e }}{{ end }}">{{ end }} ``` 3: 打开http://localhost:1313/posts/mykewords-example.html 查看源码 ``` <meta name="keywords" content="aws cloud"> ```