@@ -1,5 +1,5 @@ | |||||
<div> | <div> | ||||
<h2><a href="{{ .Permalink | relURL }}">{{ .Title | markdownify }}</a></h2> | <h2><a href="{{ .Permalink | relURL }}">{{ .Title | markdownify }}</a></h2> | ||||
<p>{{ .Description | markdownify }}</p> | <p>{{ .Description | markdownify }}</p> | ||||
<p class=list-date>{{ .Date.Format "January 2006" }}</p> | |||||
<time datetime={{ .Date.Format "2006-01-02" }}>{{ .Date.Format "January 2006" }}</time> | |||||
</div> | </div> |
@@ -5,9 +5,9 @@ | |||||
{{ .Description | markdownify }} | {{ .Description | markdownify }} | ||||
</div> | </div> | ||||
<div class=postmeta> | <div class=postmeta> | ||||
<a href="/">{{ .Site.Params.AuthorName | markdownify }}</a> | |||||
<a href=/>{{ .Site.Params.AuthorName | markdownify }}</a> | |||||
· | · | ||||
{{ .Date.Format "2 January 2006" }} | |||||
<time datetime={{ .Date.Format "2006-01-02" }}>{{ .Date.Format "2 January 2006" }}</time> | |||||
</div> | </div> | ||||
{{ .Content }} | {{ .Content }} | ||||
</article> | </article> | ||||
@@ -37,9 +37,10 @@ a:visited { | |||||
margin: 1rem 0 0rem 0; | margin: 1rem 0 0rem 0; | ||||
} | } | ||||
#articles .list-date { | |||||
font-size: 1.0rem; | |||||
text-transform: capitalize; | |||||
#articles time { | |||||
display: block; | |||||
font-size: 1.0rem; | |||||
text-transform: uppercase; | |||||
} | } | ||||
#articles h2 { | #articles h2 { | ||||