Skip to content

Commit

Permalink
fix: fix paths in index.html and remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Nov 27, 2023
1 parent 2b72e34 commit ed2b858
Showing 1 changed file with 6 additions and 35 deletions.
41 changes: 6 additions & 35 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,56 +2,37 @@
<html lang="en-US">
<head>
<meta charset="utf-8" />
<link rel="icon" href="../favicon.ico" />
<link rel="icon" href="public/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#364fc7" />
<meta name="description" content="Create boards, columns, and items." />
<link
rel="apple-touch-icon"
sizes="180x180"
href="../apple-touch-icon.png"
href="public/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="../favicon-32x32.png"
href="public/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="../favicon-16x16.png"
href="public/favicon-16x16.png"
/>
<link rel="mask-icon" href="../safari-pinned-tab.svg" color="#4c6ef5" />
<link rel="mask-icon" href="public/safari-pinned-tab.svg" color="#4c6ef5" />
<meta name="apple-mobile-web-app-title" content="Lilboards" />
<meta name="application-name" content="Lilboards" />
<meta name="msapplication-TileColor" content="#2b5797" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="../manifest.json" />
<!--
Notice the use of .. in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "../favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<link rel="manifest" href="public/manifest.json" />
<title>Create boards, columns, and items - Lilboards</title>
<!--
Open Graph: https://ogp.me/
-->
<meta property="og:title" content="Lilboards" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lilboards.org/" />
<meta property="og:image" content="https://lilboards.org/logo.png" />
<!--
Roboto font and font icons.
-->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
Expand All @@ -65,15 +46,5 @@
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="src/index.tsx"></script>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>

0 comments on commit ed2b858

Please sign in to comment.