No Description

article.html 621B

1234567891011121314151617181920212223
  1. {{ define "title" }}{{ end }}
  2. {{ define "styles" }}
  3. <style type="text/css">
  4. h3 small { display: block; font-size: 45%; color: #666; }
  5. #markdown ul { padding-left: 2em; }
  6. #markdown ul li { list-style-type: initial; }
  7. #markdown code { padding: 1em; background-color: #eee; }
  8. </style>
  9. {{ end }}
  10. {{ define "content" }}
  11. <article>
  12. <h3>
  13. {{ .Title }}
  14. <small>Published on {{ .Published }}</small>
  15. <hr />
  16. </h3>
  17. <div id="markdown">
  18. {{ .Body }}
  19. </div>
  20. </article>
  21. {{ end }}
  22. {{ define "scripts" }}{{ end }}