--- title: Example website home page description: My example description |--- # {{.Title}} Example paragraph. This website utilizes Go's templates, a Blackfriday markdown renderer and some yaml at the top of each file to provide some information about it. `code style text` * [reIndex page]({{.Global.App.ReIndexPath}}) * [404 Page](/some/path/that/does/not/exist/at/all) * [Example checkup page](/checkup) ## Recent Blog Entries: [Atom Feed](/{{.Global.App.FeedPrefix}}/Blog?limit=5&content) {{range $val := .Index.Blog.SortDate}} * [{{$val.Date.Time.Format "2006-01-02"}} {{$val.Title}}]({{$val.Path}}){{end}} ## Published Blog Entries: {{range $val := .Index.Blog.SortDate}}{{if $val.Published}} * [{{$val.Date.Time.Format "2006-01-02"}} * {{$val.Title}}]({{$val.Path}}){{end}}{{end}} ## Some internals #### Global vars: ``` {{.EncodeYaml .Global}} ``` #### Page Index ( details ) ``` {{.EncodeYaml .Index}} ```