# タイトルしたい(``{{ .Title }}``) /content/記事/index.md : ```toml title = "記事のタイトル" ``` /layouts/_default/single.html : ```go

{{ .Title }}

``` /public/記事/index.html : ```html

記事のタイトル

``` ## Emojiしたい(``{{ .Title | emojify }}``) /content/記事/index.md : ```toml title = "記事のタイトル :heart:" ``` /layouts/_default/single.html : ```go

{{ .Title | emojify }} ``` /public/記事/index.html : ```html

記事のタイトル 🩷

``` ## リファレンス - [Title - gohugo.io](https://gohugo.io/methods/resource/title/) - [strings.Title - gohugo.io](https://gohugo.io/functions/strings/title/) - [transform.Emojify - gohugo.io](https://gohugo.io/functions/transform/emojify/) - [Single page templates - gohugo.io](https://gohugo.io/templates/single-page-templates/)