Skip to content

Commit

Permalink
fix embed color and favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
3vorp committed Apr 7, 2024
1 parent ba0552a commit ae62f04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 24 deletions.
27 changes: 4 additions & 23 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,34 +1,17 @@
<!doctype html>
<html lang="EN">
<head>
<title>Faithful Web Application</title>
<meta name="theme-color" content="#76C945" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://faithfulpack.net/image/pwa/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="https://faithfulpack.net/image/pwa/app-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="https://faithfulpack.net/image/pwa/favicon-16x16.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://faithfulpack.net/image/pwa/apple-touch-180x180.png"
href="https://raw.githubusercontent.com/Faithful-Resource-Pack/Branding/main/site/favicon.ico"
/>

<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"
/>
<meta name="theme-color" content="#272727" />

<!-- HTML Meta Tags -->
<meta name="description" content="The official web application for the Faithful website." />
Expand All @@ -55,8 +38,6 @@
content="https://database.faithfulpack.net/images/branding/site/banners/universal_banner.png"
/>

<title>Faithful Web Application</title>

<!-- CSS -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900"
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ const router = new VueRouter({

router.beforeEach((to, _from, next) => {
Vue.nextTick(() => {
if (to.name) document.title = `${to.name} | Faithful Web Application`;
if (to.name) document.title = `${to.name} - Faithful Web Application`;
else document.title = "Faithful Web Application";
});
// redirect to dashboard if base url
Expand Down

0 comments on commit ae62f04

Please sign in to comment.