diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-03-10 16:14:27 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-03-10 16:14:27 +0100 |
| commit | 8bee5baf5a1a247a67c5a340778837e26bfffabe (patch) | |
| tree | cf1bd875b4f05b933c9712d87a1c486e65c4646f /templates/index.html | |
| parent | 1f58fd44a4cfaaac59c2a9c0104905c04168c238 (diff) | |
| download | mitjafelicijan.com-8bee5baf5a1a247a67c5a340778837e26bfffabe.tar.gz | |
Fixed indentations
Diffstat (limited to 'templates/index.html')
| -rwxr-xr-x | templates/index.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/templates/index.html b/templates/index.html index da06fd7..39b3746 100755 --- a/templates/index.html +++ b/templates/index.html | |||
| @@ -14,22 +14,22 @@ | |||
| 14 | <section> | 14 | <section> |
| 15 | <h2>More long form, ramblings etc</h2> | 15 | <h2>More long form, ramblings etc</h2> |
| 16 | <ul> | 16 | <ul> |
| 17 | {{ range .Pages }} | 17 | {{ range .Pages }} |
| 18 | {{ if and (eq .Type "post") (not .Draft) }} | 18 | {{ if and (eq .Type "post") (not .Draft) }} |
| 19 | <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li> | 19 | <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li> |
| 20 | {{ end }} | 20 | {{ end }} |
| 21 | {{ end }} | 21 | {{ end }} |
| 22 | </ul> | 22 | </ul> |
| 23 | </section> | 23 | </section> |
| 24 | 24 | ||
| 25 | <section> | 25 | <section> |
| 26 | <h2>Notes?! Maybe useful</h2> | 26 | <h2>Notes?! Maybe useful</h2> |
| 27 | <ul> | 27 | <ul> |
| 28 | {{ range .Pages }} | 28 | {{ range .Pages }} |
| 29 | {{ if and (eq .Type "note") (not .Draft) }} | 29 | {{ if and (eq .Type "note") (not .Draft) }} |
| 30 | <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li> | 30 | <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li> |
| 31 | {{ end }} | 31 | {{ end }} |
| 32 | {{ end }} | 32 | {{ end }} |
| 33 | </ul> | 33 | </ul> |
| 34 | </section> | 34 | </section> |
| 35 | {{ end }} | 35 | {{ end }} |
