diff options
Diffstat (limited to 'templates/page.html')
-rwxr-xr-x | templates/page.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/page.html b/templates/page.html index eeba7f1..53767ae 100755 --- a/templates/page.html +++ b/templates/page.html @@ -5,7 +5,7 @@ {% endblock %} {% block content %} - <section class="section"> + <section id="blogpost-section" class="section"> <div class="mx-auto max-w-7xl"> <div class="grid grid-cols-5 gap-x-12"> <div class="{% if page.extra.toc %}col-span-4{% else %}col-span-full{% endif %}"> @@ -24,11 +24,11 @@ </div> </a> </div> - <div class="w-full text-garage-gray text-sm grid grid-cols-2 bg-gradient-to-r from-gray-100 to-transparent p-3 border-l-4 border-gray-300"> - <div class="flex items-center justify-start"> + <div class="w-full text-garage-gray text-sm grid grid-cols-1 md:grid-cols-2 bg-gradient-to-r from-gray-100 to-transparent p-3 border-l-4 border-gray-300"> + <div class="flex items-center justify-start md:justify-start"> {{ macros::page_publish_metadata(page=page) }} </div> - <div class="flex items-center justify-end"> + <div class="flex items-center justify-start md:justify-end"> {{ macros::page_content_metadata(page=page) }} </div> <div> @@ -43,7 +43,7 @@ </div> </div> </div> - <div class="page-content max-w-4xl text-justify mt-12"> + <div class="page-content max-w-4xl text-justify mt-12 px-5 md:px-12"> {{ page.content | safe }} </div> </article> |