Skip to content

Commit

Permalink
fix(layout): minimize contet width
Browse files Browse the repository at this point in the history
  • Loading branch information
noxilixon committed Aug 13, 2024
1 parent d7e47b9 commit 3b621be
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions layouts/page/single.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{{ define "main" }}
<section id="{{ .Title }}"
class="container mt-100 mt-60 justify-content-center mx-auto col-sm-6">
<h1 class="title fw-bold mb-4">{{ .Title }}</h1>
<p class="text-muted para-desc mb-4 pb-2 mx-auto">{{ .Content | markdownify }}</p>
<section id="{{ .Title }}" class="container mt-100 mt-60">
<div class="justify-content-center mx-auto col-sm-6">
<h1 class="title fw-bold mb-4">{{ .Title }}</h1>
<p class="text-muted para-desc mb-4 pb-2 mx-auto">{{ .Content | markdownify }}</p>
</div>
</section>
{{ end }}

0 comments on commit 3b621be

Please sign in to comment.