Skip to content

Commit

Permalink
fix(text): reduce line length for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
noxilixon committed Aug 9, 2024
1 parent 5009f36 commit 1c2a92a
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions layouts/page/single.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
{{ define "main" }}

<section id="{{ .Title }}">
<div class="container mt-100 mt-60">
<div class="row">
<div class="col-12">
<div class="section-title">
<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>
</div>
</div>
</div>
<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>

{{ end }}

0 comments on commit 1c2a92a

Please sign in to comment.