Compare commits

...

2 Commits
1.1.0 ... main

Author SHA1 Message Date
nikurasu 18a214551a
Fix for preview images 2023-05-19 08:24:03 +02:00
Nikurasu ce874eec4f fix share preview images (#3)
Co-authored-by: nikurasu <publicmail@nikurasu.gay>
Reviewed-on: #3
2023-05-19 07:46:46 +02:00
1 changed files with 33 additions and 22 deletions

View File

@ -1,24 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css" integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY=" crossorigin="anonymous">
<link rel="stylesheet" href="style/<%= theme %>.css">
<% if(theme === '98') { %>
<link rel="stylesheet" href="https://unpkg.com/98.css">
<% } %>
<% if(roundPB) { %>
<link rel="stylesheet" href="style/round-pb.css">
<% } %>
<title><%= name %> - SocialTree</title>
<meta property="og:title" content="<%= name %> - SocialTree">
<meta property="og:image" content="img/<%= filenameProfilePic %>">
<meta property="description" content="<%= metaDescription %>">
<meta property="og:description" content="<%= metaDescription %>">
<meta property="og:site_name" content="<%= siteName %>">
<meta property="og:url" content="<%= url %>">
<meta property="twitter:image:src" content="img/<%= filenameProfilePic %>">
<meta property="twitter:card" content="summary">
<meta property="twitter:title" content="<%= name %> - SocialTree">
<meta property="twitter:description" content="<%= metaDescription %>">
</head>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css"
integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style/<%= theme %>.css" />
<% if(theme === '98') { %>
<link rel="stylesheet" href="https://unpkg.com/98.css" />
<% } %> <% if(roundPB) { %>
<link rel="stylesheet" href="style/round-pb.css" />
<% } %>
<title><%= name %> - SocialTree</title>
<meta property="og:title" content="<%= name %> - SocialTree" />
<meta
property="og:image"
content="<%= url %>/img/<%= filenameProfilePic %>"
/>
<meta property="description" content="<%= metaDescription %>" />
<meta property="og:description" content="<%= metaDescription %>" />
<meta property="og:site_name" content="<%= siteName %>" />
<meta property="og:url" content="<%= url %>" />
<meta
property="twitter:image"
content="<%= url %>/img/<%= filenameProfilePic %>"
/>
<meta property="twitter:card" content="summary" />
<meta property="twitter:title" content="<%= name %> - SocialTree" />
<meta property="twitter:description" content="<%= metaDescription %>" />
</head>
</html>