diff options
-rw-r--r-- | _layouts/post.html | 4 | ||||
-rw-r--r-- | assets/index.css | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index f8f1c61..c5db828 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -6,7 +6,7 @@ layout: default <p>⟸ Back to blog</p> </a> <h1>{{page.title}}</h1> -<p><em>{{post.date | date: "%-d %B %Y"}}</em></p> +<p><em>{{page.date | date: "%-d %B %Y"}}</em></p> {{content}} <p> @@ -15,5 +15,5 @@ layout: default <path d="M2 1a1 1 0 0 0-1 1v4.586a1 1 0 0 0 .293.707l7 7a1 1 0 0 0 1.414 0l4.586-4.586a1 1 0 0 0 0-1.414l-7-7A1 1 0 0 0 6.586 1H2zm4 3.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z" /> </svg> - <em>{{post.tags | join ", "}}</em> + <em>{{page.tags | join ", "}}</em> </p> \ No newline at end of file diff --git a/assets/index.css b/assets/index.css index 4cbc0b9..f7afb97 100644 --- a/assets/index.css +++ b/assets/index.css @@ -89,8 +89,6 @@ blockquote { .box > ol { color: black; - list-style-position: inside; - padding: 0; } .box > :is(p, h1, h2, h3, h4, h5, h6) { |