Skip to content

Instantly share code, notes, and snippets.

@yashhere
Created February 13, 2018 18:23
Show Gist options
  • Save yashhere/a816e345916a2c57fc4dfdeb3d554d14 to your computer and use it in GitHub Desktop.
Save yashhere/a816e345916a2c57fc4dfdeb3d554d14 to your computer and use it in GitHub Desktop.
$ mkdir themes/zeo/layouts/post
$ vim themes/zeo/layouts/post/single.html
{{ partial "header.html" . }}

  <h1>{{ .Title }}</h1>
  <h2>{{ .Date.Format "Mon, Jan 2, 2006" }}</h2>
  {{ .Content }}

{{ partial "footer.html" . }}

$ vim themes/zeo/layouts/_default/single.html
<!DOCTYPE html>
<html>
<head>
  <title>{{ .Title }}</title>
</head>
<body>
  <h1>{{ .Title }}</h1>
  {{ .Content }}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment