mirror of
https://github.com/dzeiocom/markblog.git
synced 2025-07-28 23:49:50 +00:00
@ -15,14 +15,29 @@ class MyDocument extends Document {
|
||||
|
||||
public render() {
|
||||
return (
|
||||
<Html>
|
||||
<Html lang="en">
|
||||
<Head>
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
{/* General */}
|
||||
<meta charSet="UTF-8" />
|
||||
<link rel="icon" href="/logo/32.png"/>
|
||||
|
||||
{/* Web App related */}
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
<meta name="mobile-web-app-capable" content="yes" />
|
||||
<meta name="msapplication-starturl" content="/" />
|
||||
<meta name="theme-color" content={config.colors[500]} />
|
||||
|
||||
{/* Open Graph / Twitter */}
|
||||
<meta property="twitter:card" content="summary" />
|
||||
<meta property="twitter:site" content="aviortheking" />
|
||||
<meta property="twitter:creator" content="aviortheking" />
|
||||
<meta property="twitter:site:id" content="3240791182" />
|
||||
|
||||
{/* Apple Icons */}
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-touch-icon" content="/logo/512.png" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
</Head>
|
||||
<body>
|
||||
<Main />
|
||||
|
Reference in New Issue
Block a user