mirror of
https://github.com/kbenestad/mdcms.git
synced 2026-06-18 07:24:31 +00:00
Set page title from config.sitename instead of hardcoded MD-CMS
The static <title> element previously showed "MD-CMS" before JavaScript loaded. The JS already sets document.title from config.sitename on boot, so clearing the initial value ensures the browser tab never displays the hardcoded string.
This commit is contained in:
parent
283e0f8299
commit
269980ea28
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>MD-CMS</title>
|
<title></title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<link rel="icon" href="assets/images/favicon.png">
|
<link rel="icon" href="assets/images/favicon.png">
|
||||||
<link rel="manifest" href="manifest.json">
|
<link rel="manifest" href="manifest.json">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue