diff options
-rw-r--r-- | templates/post.xml | 4 | ||||
-rw-r--r-- | util/mdconv.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/post.xml b/templates/post.xml index 4a7ee05..0e68610 100644 --- a/templates/post.xml +++ b/templates/post.xml @@ -13,7 +13,9 @@ <meta name="twitter:image" content="https://oriole.systems/logo.webp" /> </head> <body class="post"> - <article data-sblg-article="true" data-sblg-permlink="false"></article> + <main> + <article data-sblg-article="true" data-sblg-permlink="false"></article> + </main> </body> </html> diff --git a/util/mdconv.sh b/util/mdconv.sh index 19f4d4c..1e48eb7 100644 --- a/util/mdconv.sh +++ b/util/mdconv.sh @@ -13,8 +13,6 @@ cat<<EOF <a href="..">↖</a> <time datetime="$date">$(date -d"$date" '+%A, %B %e, %Y')</time> </header> - <main> - $(lowdown "$1") - </main> + $(lowdown "$1") </article> EOF |