mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-31 09:48:30 -05:00
* remove `chrome` from `X-UA-Compatible`; it's been discontinued * remove unneeded end tags * remove unneeded slash in `canonical` link
12 lines
473 B
HTML
12 lines
473 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.name }}{% endif %}</title>
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta name="description" content="{{ site.description }}">
|
|
<link rel="canonical" href="{{ site.url }}{{ page.url | replace:'index.html','' }}">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="/css/main.css">
|
|
|
|
</head> |