1234567891011121314151617181920212223 |
- {{ define "title" }}{{ end }}
- {{ define "styles" }}
- <style type="text/css">
- h3 small { display: block; font-size: 45%; color: #666; }
- #markdown ul { padding-left: 2em; }
- #markdown ul li { list-style-type: initial; }
- #markdown code { padding: 1em; background-color: #eee; }
- </style>
- {{ end }}
- {{ define "content" }}
- <article>
- <h3>
- {{ .Title }}
- <small>Published on {{ .Published }}</small>
- <hr />
- </h3>
- <div id="markdown">
- {{ .Body }}
- </div>
- </article>
- {{ end }}
- {{ define "scripts" }}{{ end }}
|