Fix date formatting escapes
This commit is contained in:
parent
48c9bdb7e6
commit
e736e570bf
1 changed files with 2 additions and 2 deletions
|
@ -25,9 +25,9 @@
|
||||||
|
|
||||||
<td class="border-t">
|
<td class="border-t">
|
||||||
{{ if in .File.Dir "projects" }}
|
{{ if in .File.Dir "projects" }}
|
||||||
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}"></time>{{ .Date.Format " 2006"}}</time>
|
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'></time>{{ .Date.Format " 2006"}}</time>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "Jan 2, 2006"}}</time>
|
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>{{ .Date.Format "Jan 2, 2006"}}</time>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Add table
Reference in a new issue