Feat: implement metadata tags across all pages
This commit is contained in:
parent
a8257e8afb
commit
2a413d650e
9 changed files with 65 additions and 3 deletions
6
404.html
6
404.html
|
|
@ -1,4 +1,10 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
<meta property="og:site_name" content="SplatNet"/>
|
||||||
|
<meta property="og:title" content="SplatNet - Splatoon's multiplayer service hub"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:description" content="A hub for player interaction for the Nintendo Wii U game Splatoon."/>
|
||||||
|
<meta property="og:image" content="https://git.crafterpika.cc/kittentm/splatnet/src/branch/main/assets/en/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.jpg"/>
|
||||||
|
<meta content="SplatNet" name="apple-mobile-web-app-title"/>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 115 KiB |
|
|
@ -1,4 +1,10 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
<meta property="og:site_name" content="SplatNet"/>
|
||||||
|
<meta property="og:title" content="SplatNet - Splatoon's multiplayer service hub"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:description" content="A hub for player interaction for the Nintendo Wii U game Splatoon."/>
|
||||||
|
<meta property="og:image" content="https://git.crafterpika.cc/kittentm/splatnet/src/branch/main/assets/en/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.jpg"/>
|
||||||
|
<meta content="SplatNet" name="apple-mobile-web-app-title"/>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,13 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
||||||
|
<meta name="description" content="A hub for player interaction for the Nintendo Wii U game Splatoon."/>
|
||||||
|
<meta property="og:site_name" content="SplatNet"/>
|
||||||
|
<meta property="og:title" content="SplatNet - Splatoon's multiplayer service hub"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:description" content="A hub for player interaction for the Nintendo Wii U game Splatoon."/>
|
||||||
|
<meta property="og:image" content="https://git.crafterpika.cc/kittentm/splatnet/src/branch/main/assets/en/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.jpg"/>
|
||||||
|
<meta content="SplatNet" name="apple-mobile-web-app-title"/>
|
||||||
<link rel="icon" href="../favicon.ico" type="image/x-icon" />
|
<link rel="icon" href="../favicon.ico" type="image/x-icon" />
|
||||||
<link rel="stylesheet" href="styles.css" />
|
<link rel="stylesheet" href="styles.css" />
|
||||||
<script src="/assets/jquery-1.9.1.js"></script>
|
<script src="/assets/jquery-1.9.1.js"></script>
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,13 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
||||||
|
<meta name="description" content="A hub for player interaction for the Nintendo Wii U game Splatoon."/>
|
||||||
|
<meta property="og:site_name" content="SplatNet"/>
|
||||||
|
<meta property="og:title" content="SplatNet - Splatoon's multiplayer service hub"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:description" content="A hub for player interaction for the Nintendo Wii U game Splatoon."/>
|
||||||
|
<meta property="og:image" content="https://git.crafterpika.cc/kittentm/splatnet/src/branch/main/assets/en/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.jpg"/>
|
||||||
|
<meta content="SplatNet" name="apple-mobile-web-app-title"/>
|
||||||
<link rel="icon" href="../favicon.ico" type="image/x-icon" />
|
<link rel="icon" href="../favicon.ico" type="image/x-icon" />
|
||||||
<link rel="stylesheet" href="styles.css" />
|
<link rel="stylesheet" href="styles.css" />
|
||||||
<script src="/assets/jquery-1.9.1.js"></script>
|
<script src="/assets/jquery-1.9.1.js"></script>
|
||||||
|
|
|
||||||
27
index.html
27
index.html
|
|
@ -1,3 +1,26 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<script src="https://code.jquery.com/jquery-4.0.0.min.js"></script>
|
<html lang="en">
|
||||||
<script src="autoredirect.js"></script>
|
<head>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
|
||||||
|
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
||||||
|
|
||||||
|
<meta content="telephone=no" name="format-detection"/>
|
||||||
|
<meta content="SplatNet" name="apple-mobile-web-app-title"/>
|
||||||
|
|
||||||
|
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
||||||
|
<meta content="A hub for player interaction for the Nintendo Wii U game Splatoon." name="description"/>
|
||||||
|
<meta property="og:site_name" content="SplatNet"/>
|
||||||
|
<meta property="og:title" content="SplatNet - Splatoon's multiplayer service hub"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:image" content="https://git.crafterpika.cc/kittentm/splatnet/src/branch/main/assets/en/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.jpg"/>
|
||||||
|
|
||||||
|
<link href="../assets/application-hash.css" media="all" rel="stylesheet"/>
|
||||||
|
<link href="../favicon.ico" rel="shortcut icon" type="image/x-icon"/>
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
||||||
|
<script src="autoredirect.js" defer></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -3,6 +3,13 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
||||||
|
<meta name="description" content="A hub for player interaction for the Nintendo Wii U game Splatoon."/>
|
||||||
|
<meta property="og:site_name" content="SplatNet"/>
|
||||||
|
<meta property="og:title" content="SplatNet - Splatoon's multiplayer service hub"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:description" content="A hub for player interaction for the Nintendo Wii U game Splatoon."/>
|
||||||
|
<meta property="og:image" content="https://git.crafterpika.cc/kittentm/splatnet/src/branch/main/assets/en/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.jpg"/>
|
||||||
|
<meta content="SplatNet" name="apple-mobile-web-app-title"/>
|
||||||
<link rel="icon" href="../favicon.ico" type="image/x-icon" />
|
<link rel="icon" href="../favicon.ico" type="image/x-icon" />
|
||||||
<link rel="stylesheet" href="styles.css" />
|
<link rel="stylesheet" href="styles.css" />
|
||||||
<script src="/assets/jquery-1.9.1.js"></script>
|
<script src="/assets/jquery-1.9.1.js"></script>
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
<meta content="website" property="og:type"/>
|
<meta content="website" property="og:type"/>
|
||||||
<meta content="SplatNet is an online service enabling interaction between players of Splatoon. Players can recruit others to play with them and check the play information and ranking of their friends." property="og:description"/>
|
<meta content="SplatNet is an online service enabling interaction between players of Splatoon. Players can recruit others to play with them and check the play information and ranking of their friends." property="og:description"/>
|
||||||
<meta content="sign_in/index.html" property="og:url"/>
|
<meta content="sign_in/index.html" property="og:url"/>
|
||||||
<meta content="https://splatoon.nintendo.net/assets/en/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.png" property="og:image"/>
|
<meta content="https://git.crafterpika.cc/kittentm/splatnet/src/branch/main/assets/en/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.jpg" property="og:image"/>
|
||||||
<meta content="ja_JP" property="og:locale"/>
|
<meta content="ja_JP" property="og:locale"/>
|
||||||
<meta content="en_US" property="og:locale:alternate"/>
|
<meta content="en_US" property="og:locale:alternate"/>
|
||||||
<meta content="A hub for player interaction for the Nintendo Wii U game Splatoon." name="description"/>
|
<meta content="A hub for player interaction for the Nintendo Wii U game Splatoon." name="description"/>
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,12 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
<title>SplatNet - Splatoon's multiplayer service hub</title>
|
||||||
|
<meta property="og:site_name" content="SplatNet"/>
|
||||||
|
<meta property="og:title" content="SplatNet - Splatoon's multiplayer service hub"/>
|
||||||
|
<meta property="og:type" content="website"/>
|
||||||
|
<meta property="og:description" content="A hub for player interaction for the Nintendo Wii U game Splatoon."/>
|
||||||
|
<meta property="og:image" content="https://git.crafterpika.cc/kittentm/splatnet/src/branch/main/assets/en/facebook_image-f7cbb3f4687a632cf0a44be1e68a7676dbb52eaf2ebc4b207522418825078203.jpg"/>
|
||||||
|
<meta content="SplatNet" name="apple-mobile-web-app-title"/>
|
||||||
<link rel="icon" href="../favicon.ico" type="image/x-icon" />
|
<link rel="icon" href="../favicon.ico" type="image/x-icon" />
|
||||||
<link rel="stylesheet" href="styles.css" />
|
<link rel="stylesheet" href="styles.css" />
|
||||||
<script src="/assets/jquery-1.9.1.js"></script>
|
<script src="/assets/jquery-1.9.1.js"></script>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue