Skip to content

Commit 09c5c3c

Browse files
committed
p
1 parent 5584fe5 commit 09c5c3c

File tree

6 files changed

+7
-11
lines changed

6 files changed

+7
-11
lines changed

layouts/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ define "main" }}
22

3-
<p style="text-align: center;"><strong>Page not found ! :(</strong></p>
3+
<p class="text-center fw-bold">Page not found ! :(</p>
44

55
{{ end }}

layouts/_default/baseof.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<!DOCTYPE html>
2-
<html lang="en" data-bs-theme="auto">
1+
{{ partial "meta/main.html" . }}
32
<head>
43
{{ partial "meta/html.html" . }}
54
<title>{{ .Page.Title | default .Site.Title }}</title>

layouts/changelog/baseof.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<!DOCTYPE html>
2-
<html lang="{{ .Site.Language.Lang | default "en" }}" data-bs-theme="auto">
1+
{{ partial "meta/main.html" . }}
32
<head>
43
{{ partial "meta/html.html" . }}
54

layouts/doc/baseof.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<!DOCTYPE html>
2-
<html lang="{{ .Site.Language.Lang | default "en" }}" data-bs-theme="auto">
1+
{{ partial "meta/main.html" . }}
32
<head>
43
{{ partial "meta/html.html" . }}
54
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Page.Title }} | {{ .Site.Title }}{{ end }}</title>

layouts/index.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<!DOCTYPE html>
2-
<html lang="en" data-bs-theme="auto">
1+
{{ partial "meta/main.html" . }}
32
<head>
43
{{ partial "meta/html.html" . }}
54
<title>{{ .Page.Title | default .Site.Title }}</title>
@@ -10,8 +9,6 @@
109
{{ partial "google/searchconsole.html" . }}
1110
{{ partial "ads/head.html" . }}
1211
{{ partial "adspop.html" . }}
13-
14-
1512
</head>
1613

1714
<body>

layouts/partials/meta/main.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ .Params.lang | default "en" }}" data-bs-theme="auto" dir="ltr">

0 commit comments

Comments
 (0)