Skip to content

Commit 17f4335

Browse files
committed
Try to make metadata work
1 parent b9a1af8 commit 17f4335

File tree

9 files changed

+17
-10
lines changed

9 files changed

+17
-10
lines changed

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"[html]": {
33
"editor.defaultFormatter": "NikolaosGeorgiou.html-fmt-vscode"
44
},
5-
"[php]": {
6-
"editor.defaultFormatter": "NikolaosGeorgiou.html-fmt-vscode"
7-
},
85
"[css]": {
96
"editor.defaultFormatter": "esbenp.prettier-vscode"
107
}

comm_accept.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<body>
77
<center>
88
<h1>
9+
<meta name="og:title" content="Submission Successful">
10+
<meta name="og:url" content="https://gamerpablito.github.io/comm_accept">
911
<u>Submission Successful</u>
1012
</h1>
1113
<br>

comm_cancel.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<meta name="og:title" content="Submission Canceled">
5+
<meta name="og:url" content="https://gamerpablito.github.io/comm_cancel">
46
<title>Submission Canceled - GamerPablito</title>
57
</head>
68
<body>

commissions.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<meta name="og:title" content="Commissions">
5+
<meta name="og:url" content="https://gamerpablito.github.io/commissions.html">
46
<title>Commissions - GamerPablito</title>
57
</head>
68
<body>

fanarts.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<meta name="og:title" content="Fanarts">
5+
<meta name="og:url" content="https://gamerpablito.github.io/fanarts.html">
46
<title>Fanarts - GamerPablito</title>
57
</head>
68
<body>

index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<meta name="og:title" content="Home">
5+
<meta name="og:url" content="https://gamerpablito.github.io">
46
<title>Home - GamerPablito</title>
57
</head>
68
<body>

javas/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Main Icon Implementation
2-
const pfpUrl = "https://pbs.twimg.com/media/FreRm5jXoAE4-pQ.jpg";
2+
const pfpUrl = "fanarts/16.png";
33
var mainIcon = document.getElementById('pfp2');
44
mainIcon.src = pfpUrl;
55
mainIcon.width = mainIcon.height = 200;

javas/main.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
var head = document.querySelector('head');
22
head.innerHTML += '<meta charset="UTF-8">';
3-
head.innerHTML += '<meta property="og:title" content="GamerPablito\'s Website">';
4-
head.innerHTML += '<meta property="og:description" content="Haxe Developer">';
5-
head.innerHTML += '<meta property="og:image" content="https://pbs.twimg.com/profile_banners/1372196574055518209/1690366096/1500x500">';
6-
head.innerHTML += '<meta property="og:url" content="https://gamerpablito.github.io">';
3+
head.innerHTML += '<meta property="og:description" content="GamerPablito">';
4+
head.innerHTML += '<meta property="og:image" content="fanarts/16.png">';
75
head.innerHTML += '<meta property="og:type" content="website">';
86
head.innerHTML += '<meta name="viewport" content="width=device-width, initial-scale=1.0">';
9-
head.innerHTML += '<link rel="shortcut icon" href="https://pbs.twimg.com/media/FreRm5jXoAE4-pQ.jpg" type="image/jpg">';
7+
head.innerHTML += '<link rel="shortcut icon" href="fanarts/16.png" type="image/jpg">';
108
head.innerHTML += '<link rel="stylesheet" href="style.css"></link>';
119
document.querySelector('footer').innerHTML = "Website version: v2025.05.24<br>Copyright &copy; 2023-2025 GamerPablito";

portfolio.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<title>My Portfolio - GamerPablito</title>
4+
<meta name="og:title" content="Portfolio">
5+
<meta name="og:url" content="https://gamerpablito.github.io/portfolio.html">
6+
<title>Portfolio - GamerPablito</title>
57
</head>
68
<body>
79
<center>

0 commit comments

Comments
 (0)