1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 04:55:30 -04:00

fix open graph meta tags

This commit is contained in:
2019-10-28 23:45:00 -04:00
parent c79bba520b
commit e016910825
6 changed files with 27 additions and 12 deletions

View File

@@ -2,8 +2,9 @@
<html lang="en">
<head>
<meta charset="utf-8">
{{ hugo.Generator }}
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page Not Found</title>
<title>Page Not Found &ndash; {{ .Site.Title }}</title>
<style>
body {
background: #efefef;
@@ -13,12 +14,12 @@
padding: 0;
}
div#message {
background: #fff;
background: #ffffff;
max-width: 400px;
margin: 100px auto 16px;
padding: 16px 32px;
border-radius: 4px;
box-shadow: 0 1px 3px #e0e0e0, 0 1px 2px #888;
box-shadow: 0 1px 3px #e0e0e0, 0 1px 2px #888888;
}
div#message h1 {
margin: 16px 0;
@@ -31,14 +32,14 @@
line-height: 140%;
}
div#message a {
color: #0077a7;
color: #0e6dc2;
}
div#message a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
body, div#message {
background: #fff;
background: #ffffff;
margin-top: 16px;
box-shadow: none;
}