Skip to content

Commit

Permalink
Add theme color metatag
Browse files Browse the repository at this point in the history
* Provide theme color hint for browsers that support it (e.g. Chrome).
  • Loading branch information
yookoala committed Aug 6, 2024
1 parent c617479 commit a088d11
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,15 @@
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="{{ site.description }}" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#373737" />

<link rel="stylesheet" type="text/css" media="screen" href="{{ site.url }}/stylesheets/stylesheet.css">
<link rel="stylesheet" type="text/css" media="screen" href="{{ site.url }}/stylesheets/cangjians.css">

<title>{{ page.title }} | {{ site.name }}</title>
</head>

<body
{% if page.classname %}
class="{{ page.classname }}"
{% endif %}>
>
<body {% if page.classname %} class="{{ page.classname }}" {% endif %}>

{% include header.html %}

Expand Down

0 comments on commit a088d11

Please sign in to comment.