Enable left alignment as an option (#51)

This commit is contained in:
Michael Noronha
2017-08-24 15:06:43 -04:00
committed by Alexis Tacnet
parent bfd5f66d5a
commit 9ea87416af

View File

@@ -507,7 +507,11 @@ section.main .content .markdown a code:hover {
text-decoration: underline; text-decoration: underline;
} }
section.main .content .markdown p { section.main .content .markdown p {
{{if .Site.Params.align_left}}
text-align: left;
{{else}}
text-align: justify; text-align: justify;
{{end}}
margin-top: 0; margin-top: 0;
margin-bottom: 1em; margin-bottom: 1em;
} }