diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-02-14 01:29:58 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-02-14 01:29:58 +0100 |
| commit | 8eaf5920bea9d3920ba1de20a1bb82bb7cc88347 (patch) | |
| tree | 2659e882323a844aaa85e4a72a3fb2166aea621c | |
| parent | 37cfec907460f0bd35c57d878137d344a7118472 (diff) | |
| download | mitjafelicijan.com-8eaf5920bea9d3920ba1de20a1bb82bb7cc88347.tar.gz | |
Added a bit of html tags
| -rw-r--r-- | templates/note.html | 6 | ||||
| -rw-r--r-- | templates/page.html | 4 | ||||
| -rw-r--r-- | templates/post.html | 6 |
3 files changed, 11 insertions, 5 deletions
diff --git a/templates/note.html b/templates/note.html index 55a29e9..ce72921 100644 --- a/templates/note.html +++ b/templates/note.html | |||
| @@ -5,8 +5,10 @@ | |||
| 5 | 5 | ||
| 6 | {{ define "content" }} | 6 | {{ define "content" }} |
| 7 | <article> | 7 | <article> |
| 8 | <h1>{{ .Page.Title }}</h1> | 8 | <hgroup> |
| 9 | <p><cap>{{ .Page.Type }}</cap>, {{ .Page.Created.Format "Jan 2, 2006" }}, on <a href="{{ .Config.BaseURL }}">{{ .Config.Title }}'s blog</a></p> | 9 | <h1>{{ .Page.Title }}</h1> |
| 10 | <p><cap>{{ .Page.Type }}</cap>, {{ .Page.Created.Format "Jan 2, 2006" }}, on <a href="{{ .Config.BaseURL }}">{{ .Config.Title }}'s blog</a></p> | ||
| 11 | </hgroup> | ||
| 10 | <div>{{ .Page.HTML }}</div> | 12 | <div>{{ .Page.HTML }}</div> |
| 11 | </article> | 13 | </article> |
| 12 | 14 | ||
diff --git a/templates/page.html b/templates/page.html index 8c38e82..90c15df 100644 --- a/templates/page.html +++ b/templates/page.html | |||
| @@ -5,7 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | {{ define "content" }} | 6 | {{ define "content" }} |
| 7 | <article> | 7 | <article> |
| 8 | <h1>{{ .Page.Title }}</h1> | 8 | <hgroup> |
| 9 | <h1>{{ .Page.Title }}</h1> | ||
| 10 | </hgroup> | ||
| 9 | <div>{{ .Page.HTML }}</div> | 11 | <div>{{ .Page.HTML }}</div> |
| 10 | </article> | 12 | </article> |
| 11 | {{ end }} | 13 | {{ end }} |
diff --git a/templates/post.html b/templates/post.html index 6e122c6..13feb66 100644 --- a/templates/post.html +++ b/templates/post.html | |||
| @@ -5,8 +5,10 @@ | |||
| 5 | 5 | ||
| 6 | {{ define "content" }} | 6 | {{ define "content" }} |
| 7 | <article> | 7 | <article> |
| 8 | <h1>{{ .Page.Title }}</h1> | 8 | <hgroup> |
| 9 | <p><cap>{{ .Page.Type }}</cap>, {{ .Page.Created.Format "Jan 2, 2006" }}, on <a href="{{ .Config.BaseURL }}">{{ .Config.Title }}'s blog</a></p> | 9 | <h1>{{ .Page.Title }}</h1> |
| 10 | <p><cap>{{ .Page.Type }}</cap>, {{ .Page.Created.Format "Jan 2, 2006" }}, on <a href="{{ .Config.BaseURL }}">{{ .Config.Title }}'s blog</a></p> | ||
| 11 | </hgroup> | ||
| 10 | <div>{{ .Page.HTML }}</div> | 12 | <div>{{ .Page.HTML }}</div> |
| 11 | </article> | 13 | </article> |
| 12 | 14 | ||
