You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,14 +19,16 @@ We'd also like to thank @distantnative for his help along the way! Without him t
19
19
20
20
## Config options
21
21
22
-
By default the *Page Title* will be rendered before the *Site Title* inside the title tag. Resulting in a title tag that looks like this `<title>Page Title – Site Title</title>`. If you want Site Title to come first, simply add the following to your Kirby `config.php` file.
22
+
By default the *Page Title* will be rendered before the *Site Title*. Resulting in a title tag that looks like this `<title>Page Title – Site Title</title>`. If you want Site Title to come first, simply add the following lines to your Kirby `config.php` file:
23
23
24
24
```
25
25
'diesdasdigital.meta-knight' => [
26
26
'siteTitleAfterPageTitle' => false,
27
27
],
28
28
```
29
29
30
+
You'll then get a title tag that looks like this `<title>Site Title – Page Title</title>`.
0 commit comments