Remove max-width from text
This commit is contained in:
@@ -67,7 +67,7 @@
|
||||
<footer>
|
||||
<div class="justify-content-center row">
|
||||
<div class="col col-auto">
|
||||
<p class="text-muted" style="max-width: 100ch">{{ .Site.Copyright | markdownify }}</p>
|
||||
<p class="text-muted">{{ .Site.Copyright | markdownify }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
@@ -8,7 +8,7 @@
|
||||
{{ if or .Title .Description }}
|
||||
<header>
|
||||
<div class="row text-center justify-content-center">
|
||||
<div class="col" style="max-width: 100ch">
|
||||
<div class="col">
|
||||
{{ if .Title }}
|
||||
<h1 class="display-5 fw-bold">
|
||||
{{ if .Params.link }}
|
||||
@@ -28,7 +28,7 @@
|
||||
{{ if .Content }}
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="mx-auto" style="max-width: 66ch">
|
||||
<div class="mx-auto">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</div>
|
||||
@@ -39,7 +39,7 @@
|
||||
<section>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="mx-auto text-center" style="max-width: 100ch">
|
||||
<div class="mx-auto text-center">
|
||||
{{ range $p.PageGroups }}
|
||||
<h5>{{ .Key }}</h5>
|
||||
{{ range .Pages }}
|
||||
|
@@ -9,23 +9,21 @@
|
||||
<header>
|
||||
<div class="justify-content-center row">
|
||||
<div class="col col-auto text-center">
|
||||
<div style="max-width: 100ch">
|
||||
{{ if .Title }}
|
||||
<h1 class="display-5 fw-bold">
|
||||
{{ if .Params.link }}
|
||||
<a href="{{ .Params.link }}">{{ .Title | markdownify }}</a>
|
||||
{{ else }}
|
||||
{{ .Title | markdownify }}
|
||||
{{ end }}
|
||||
</h1>
|
||||
{{ if .Title }}
|
||||
<h1 class="display-5 fw-bold">
|
||||
{{ if .Params.link }}
|
||||
<a href="{{ .Params.link }}">{{ .Title | markdownify }}</a>
|
||||
{{ else }}
|
||||
{{ .Title | markdownify }}
|
||||
{{ end }}
|
||||
{{ if .Description }}
|
||||
<p class="lead">{{ .Description | markdownify }}</p>
|
||||
{{ end }}
|
||||
{{ if .PublishDate }}
|
||||
<p class="text-muted"><time datetime="{{ .PublishDate.Format `2006-01-02` }}">{{ .PublishDate.Format "January 2, 2006" }}</time></p>
|
||||
{{ end }}
|
||||
</div>
|
||||
</h1>
|
||||
{{ end }}
|
||||
{{ if .Description }}
|
||||
<p class="lead">{{ .Description | markdownify }}</p>
|
||||
{{ end }}
|
||||
{{ if .PublishDate }}
|
||||
<p class="text-muted"><time datetime="{{ .PublishDate.Format `2006-01-02` }}">{{ .PublishDate.Format "January 2, 2006" }}</time></p>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
@@ -33,9 +31,7 @@
|
||||
{{ if .Content }}
|
||||
<div class="justify-content-center row">
|
||||
<div class="col col-auto" id="content">
|
||||
<div style="max-width:66ch">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
@@ -9,7 +9,7 @@
|
||||
<header>
|
||||
<div class="row text-center">
|
||||
<div class="col">
|
||||
<h1 class="display-5 fw-bold" style="max-width: 100ch">
|
||||
<h1 class="display-5 fw-bold">
|
||||
{{ if .Params.link }}
|
||||
<a href="{{ .Params.link }}">{{ .Title | markdownify }}</a>
|
||||
{{ else }}
|
||||
@@ -23,7 +23,7 @@
|
||||
{{ if .Pages }}
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="mx-auto text-center" style="max-width: 66ch">
|
||||
<div class="mx-auto text-center">
|
||||
<ul class="list-inline">
|
||||
{{ range (sort .Pages "Title") }}
|
||||
<li class="list-inline-item">
|
||||
|
@@ -2,7 +2,7 @@
|
||||
<section>
|
||||
<header>
|
||||
<div class="row text-center justify-content-center">
|
||||
<div class="col" style="max-width: 100ch">
|
||||
<div class="col">
|
||||
<h1 class="display-5 fw-bold">
|
||||
{{ .Title }}
|
||||
</h1>
|
||||
@@ -13,7 +13,7 @@
|
||||
<section>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="mx-auto text-center" style="max-width: 100ch">
|
||||
<div class="mx-auto text-center">
|
||||
{{ range $p.PageGroups }}
|
||||
<h5>{{ .Key }}</h5>
|
||||
{{ range .Pages }}
|
||||
|
Reference in New Issue
Block a user