diff options
| author | Fuwn <[email protected]> | 2024-01-16 08:11:31 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-16 08:11:31 -0800 |
| commit | bfc91656f335de094dfad97c1ec4086dd14332ba (patch) | |
| tree | 967fa1eb42df606d42f37032520733946012ba3f | |
| parent | fix(anime): null check mediaTitle (diff) | |
| download | due.moe-bfc91656f335de094dfad97c1ec4086dd14332ba.tar.xz due.moe-bfc91656f335de094dfad97c1ec4086dd14332ba.zip | |
fix(html): add name and property
| -rw-r--r-- | src/app.html | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/src/app.html b/src/app.html index ec7d0b50..fa352543 100644 --- a/src/app.html +++ b/src/app.html @@ -3,34 +3,41 @@ <head> <!-- HTML --> <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width" /> - <meta name="theme-color" content="#060506" /> + <meta name="viewport" property="viewport" content="width=device-width" /> + <meta name="theme-color" property="theme-color" content="#060506" /> <meta name="description" - content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga." + property="description" + content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the easiest way to stay up-to-date with all of your anime & manga." /> <!-- Facebook --> - <meta property="og:url" content="https://due.moe" /> - <meta property="og:type" content="website" /> - <meta property="og:title" content="due.moe" /> - <meta property="og:site_name" content="due.moe " /> + <meta name="og:url" property="og:url" content="https://due.moe" /> + <meta name="og:type" property="og:type" content="website" /> + <meta name="og:title" property="og:title" content="due.moe" /> + <meta name="og:site_name" property="og:site_name" content="due.moe " /> <meta + name="og:description" property="og:description" - content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga." + content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the easiest way to stay up-to-date with all of your anime & manga." /> - <meta property="og:image" content="https://due.moe/favicon-196x196.png" /> + <meta name="og:image" property="og:image" content="https://due.moe/favicon-196x196.png" /> <!-- Twitter --> - <meta name="twitter:card" content="summary_large_image" /> - <meta property="twitter:domain" content="due.moe" /> - <meta property="twitter:url" content="https://due.moe" /> - <meta name="twitter:title" content="due.moe" /> + <meta name="twitter:card" property="twitter:card" content="summary_large_image" /> + <meta name="twitter:domain" property="twitter:domain" content="due.moe" /> + <meta name="twitter:url" property="twitter:url" content="https://due.moe" /> + <meta name="twitter:title" property="twitter:title" content="due.moe" /> <meta name="twitter:description" - content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the best way to keep track of your anime & manga." + property="twitter:description" + content="Instantly view which anime & manga on your lists have new episodes/chapters! Combining utility and simplicity, due.moe is the easiest way to stay up-to-date with all of your anime & manga." + /> + <meta + name="twitter:image" + property="twitter:image" + content="https://due.moe/favicon-196x196.png" /> - <meta name="twitter:image" content="https://due.moe/favicon-196x196.png" /> <title>due.moe</title> |