Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: set a specific page title for each project #153

Merged
merged 4 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions projects/lit-ts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>maxGraph Lit integration example</title>
<title>maxGraph Lit Typescript example</title>
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
<script type="module" src="/src/index.ts"></script>
</head>
<body>
<h1>maxGraph TypeScript example</h1>
<h1>maxGraph Lit Typescript example</h1>
<p>Display a test graph. Activated behaviours:</p>
<ul>
<li>Panning: use mouse right button</li>
Expand Down
4 changes: 2 additions & 2 deletions projects/parcel-ts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>maxGraph TypeScript example</title>
<title>maxGraph Parcel TypeScript example</title>
<link rel="icon" type="image/ico" href="favicon.ico" />
<script type="module" src="src/main.ts"></script>
</head>
<body>
<h1>maxGraph TypeScript example</h1>
<h1>maxGraph Parcel TypeScript example</h1>
<p>Display a test graph. Activated behaviours:</p>
<ul>
<li>Panning: use mouse right button</li>
Expand Down
4 changes: 2 additions & 2 deletions projects/rollup-ts/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>maxGraph TypeScript example</title>
<title>maxGraph Rollup TypeScript example</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="style.css" />
<script type="module" src='bundle.js'></script>
</head>
<body>
<h1>maxGraph TypeScript example</h1>
<h1>maxGraph Rollup TypeScript example</h1>
<p>Display a test graph. Activated behaviours:</p>
<ul>
<li>Panning: use mouse right button</li>
Expand Down
6 changes: 5 additions & 1 deletion projects/sveltekit-ts/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
import { Client } from '@maxgraph/core';
</script>

<h1>maxGraph SvelteKit-TypeScript example</h1>
<svelte:head>
<title>maxGraph SvelteKit TypeScript example</title>
</svelte:head>

<h1>maxGraph SvelteKit TypeScript example</h1>
<p>Display a test graph. Activated behaviours:</p>
<ul>
<li>Panning: use mouse right button</li>
Expand Down
4 changes: 2 additions & 2 deletions projects/vitejs-ts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>maxGraph TypeScript example</title>
<title>maxGraph Vite TypeScript example</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<script type="module" src="/src/main.ts"></script>
</head>
<body>
<h1>maxGraph TypeScript example</h1>
<h1>maxGraph Vite TypeScript example</h1>
<p>Display a test graph. Activated behaviours:</p>
<ul>
<li>Panning: use mouse right button</li>
Expand Down