Skip to content

Commit

Permalink
Updated meta tags for all pages on site.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaanavD committed May 22, 2024
1 parent 7c820c4 commit b904a01
Show file tree
Hide file tree
Showing 14 changed files with 251 additions and 74 deletions.
24 changes: 12 additions & 12 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
import { fade } from 'svelte/transition';
import { page } from '$app/stores';
export let data;
const url = 'https://onnxruntime.ai';
</script>

<svelte:head>
{@html oneLight}

<title
>ONNX Runtime | {data.pathname == '/'
? 'Home'
Expand All @@ -22,24 +22,24 @@
? 'Home'
: data.pathname.substring(1).charAt(0).toUpperCase() + data.pathname.substring(2)}"
/>
<meta
name="description"
content="Cross-platform accelerated machine learning. Built-in optimizations speed up training and inferencing with your existing technology stack."
/>
<meta name="title" content={"ONNX Runtime |" + data.pathname == '/'
? 'Home'
: data.pathname.substring(1).charAt(0).toUpperCase() + data.pathname.substring(2)} />
<meta property="twitter:title" content={"ONNX Runtime |" + data.pathname == '/'
? 'Home'
: data.pathname.substring(1).charAt(0).toUpperCase() + data.pathname.substring(2)} />
<meta property="twitter:url" content={url + data.pathname} />
<meta property="og:url" content={url + data.pathname} />

<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#B2B2B2" />
<meta name="msapplication-TileColor" content="#B2B2B2" />
<meta name="theme-color" content="#B2B2B2" />
<!-- OpenGraph meta tags -->
<meta
property="og:description"
content="Cross-platform accelerated machine learning. Built-in optimizations speed up training and inferencing with your existing technology stack."
/>
<meta property="og:image" content="https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png" />
<meta property="og:url" content="https://onnxruntime.ai" />
<meta property="og:type" content="website" />


</svelte:head>
<div class="selection:bg-info">
{#if !$page.url.pathname.startsWith('/blogs/')}
Expand Down
20 changes: 20 additions & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,27 @@
}
});
});
let description = 'Cross-platform accelerated machine learning. Built-in optimizations speed up training and inferencing with your existing technology stack.'
let image = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let imageSquare = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let authors = ['']
let keywords = 'onnx runtime, onnx, onnxruntime, onnx runtime performance, onnx runtime training, onnx runtime inference, onnx runtime cross-platform, onnx runtime cross platform, onnx runtime crossplatform, onnx runtime training and inference, onnx runtime training & inference, onnx runtime training inference, onnx runtime training, onnx runtime inference, onnx runtime cross-platform, onnx runtime cross platform, onnx runtime crossplatform, onnx runtime training and inference, onnx runtime training & inference, onnx runtime training inference'
</script>
<svelte:head>
<!-- Dynamic meta tags -->
<meta name="description" content={description} />
<meta name="image" content={image} />
<meta name="author" content={authors.join(', ')} />
<meta name="keywords" content={keywords} />
<!-- Open Graph / Facebook -->
<meta property="og:description" content={description}/>
<meta property="og:image" content={image} />

<!-- Twitter -->
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} />
<meta property="twitter:card" content={imageSquare} />
</svelte:head>

<Hero />
<Customers />
Expand Down
23 changes: 18 additions & 5 deletions src/routes/blogs/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -373,13 +373,26 @@
link: 'https://www.linkedin.com/pulse/hcm-sentence-similarity-language-model-using-java-jonathon-palmieri-tdlpc%3FtrackingId=CN2PPVO4Toqh8r6JsAYMIw%253D%253D/?trackingId=ByNomo0pQFKM%2F%2BWEknVs7Q%3D%3D'
}
];
let description = 'ONNX Runtime Blogs - your source for staying updated on the latest ONNX Runtime updated and information.'
let image = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let imageSquare = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let authors = ['']
let keywords = 'onnxruntime, onnx runtime blogs, onnx runtime community blogs, onnx runtime community posts, onnx runtime community announcements'
</script>

<svelte:head>
<meta
name="description"
content="ONNX Runtime Blogs - your source for staying updated on the latest ONNX Runtime updated and information."
/>
<!-- Dynamic meta tags -->
<meta name="description" content={description} />
<meta name="image" content={image} />
<meta name="author" content={authors.join(', ')} />
<meta name="keywords" content={keywords} />
<!-- Open Graph / Facebook -->
<meta property="og:description" content={description}/>
<meta property="og:image" content={image} />

<!-- Twitter -->
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} />
<meta property="twitter:card" content={imageSquare} />
</svelte:head>
<div class="container mx-auto">
<div class="flex">
Expand Down
41 changes: 21 additions & 20 deletions src/routes/blogs/post.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@
* @type {any}
*/
export let url;
/**
* @type {any}
*/
export let robots;
/**
* @type {any}
*/
Expand All @@ -53,22 +49,27 @@
</script>

<svelte:head>
<meta name="title" content={title} />
<meta name="description" content={description} />
<meta name="keywords" content={keywords} />
<meta name="author" content={authors.join(', ')} />
<meta name="date" content={date} />
<meta name="og:title" content={title} />
<meta name="og:description" content={description} />
<meta name="og:type" content="article" />
<meta name="og:url" content={url} />
<meta name="twitter:title" content={title} />
<meta name="twitter:description" content={description} />
<meta name="image" content={image} />
<meta name="og:image" content={imageSquare ? imageSquare : image} />
<meta name="twitter:card" content={imageSquare ? imageSquare : image} />
<meta name="twitter:image" content={image} />
<meta name="robots" content={robots} />
<!-- Primary Meta Tags -->
<title>ONNX Runtime | {title}</title>
<meta name="title" content={title} />
<meta name="description" content={description} />
<meta name="author" content={authors.join(', ')} />
<meta name="keywords" content={keywords} />
<meta name="image" content={image} />

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content={url} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description}/>
<meta property="og:image" content={imageSquare ? imageSquare : image} />

<!-- Twitter -->
<meta property="twitter:card" content={imageSquare ? imageSquare : image} />
<meta property="twitter:url" content={url} />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} />
</svelte:head>
<Header pathvar="" />
<div class="container mx-auto px-4 md:px-8 lg:px-48 pt-8">
Expand Down
20 changes: 20 additions & 0 deletions src/routes/components/winarm.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
<script>
import windowsdevkit from '../../images/windowsdevkit.png';
let description = 'Windows Dev Kit 2023, aka Project Volterra, enables developers to build apps that unlock the power of the NPU hardware to accelerate AI/ML workloads.'
let image = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let imageSquare = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let authors = ['']
let keywords = 'onnxruntime, onnx runtime windows, onnx runtime windows models, onnx runtime windows deployment, onnx runtime windows performance, onnx runtime windows time to market, onnx runtime windows deploy anywhere, onnx runtime windows boost performance, onnx runtime windows improve time to market, onnx runtime windows production ready, onnx runtime windows lower latency, onnx runtime windows higher throughput, onnx runtime windows get innovations into production faster, onnx runtime windows testimonials, onnx runtime windows performance enhancements, onnx runtime windows production ready, onnx runtime windows lower latency, onnx runtime windows higher throughput, onnx runtime windows get innovations into production faster, onnx runtime windows performance enhancements'
</script>
<svelte:head>
<!-- Dynamic meta tags -->
<meta name="description" content={description} />
<meta name="image" content={image} />
<meta name="author" content={authors.join(', ')} />
<meta name="keywords" content={keywords} />
<!-- Open Graph / Facebook -->
<meta property="og:description" content={description}/>
<meta property="og:image" content={image} />

<!-- Twitter -->
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} />
<meta property="twitter:card" content={imageSquare} />
</svelte:head>

<div class="container mx-auto px-10">
<h1 class="text-4xl mb-4">ONNX Runtime + Windows Dev Kit 2023 = NPU powered AI</h1>
Expand Down
24 changes: 19 additions & 5 deletions src/routes/events/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,28 @@
link: 'https://www.youtube-nocookie.com/embed/lOp8WK0fa94?si=rHn8fxAii3Ksr8Ey'
}
];
let description = 'ONNX Runtime Events - information on past and future ONNX Runtime Events.';
let image = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let imageSquare = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let authors = ['']
let keywords = 'onnxruntime, onnx runtime events, onnx runtime community events, onnx runtime community meetup, onnx runtime community meetups'
</script>

<svelte:head>
<meta
name="description"
content="ONNX Runtime Events - information on past and future ONNX Runtime Events."
/>
<!-- Dynamic meta tags -->
<meta name="description" content={description} />
<meta name="image" content={image} />
<meta name="author" content={authors.join(', ')} />
<meta name="keywords" content={keywords} />
<!-- Open Graph / Facebook -->
<meta property="og:description" content={description}/>
<meta property="og:image" content={image} />

<!-- Twitter -->
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} />
<meta property="twitter:card" content={imageSquare} />
</svelte:head>

<div class="container mx-auto">
<div class="flex">
<h1 class="text-5xl my-auto mx-4">Events</h1>
Expand Down
19 changes: 19 additions & 0 deletions src/routes/generative-ai/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,26 @@
const imgalt = 'ONNX Runtime Logo';
import stablediffusion1 from '../../images/StableDiffusion1.webp';
import stablediffusion2 from '../../images/StableDiffusion2.webp';
let image = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let imageSquare = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let authors = ['']
let keywords = 'onnxruntime, onnx runtime generative ai, onnx runtime generative ai models, onnx runtime generative ai deployment, onnx runtime generative ai performance, onnx runtime generative ai time to market, onnx runtime generative ai deploy anywhere, onnx runtime generative ai boost performance, onnx runtime generative ai improve time to market, onnx runtime generative ai production ready, onnx runtime generative ai lower latency, onnx runtime generative ai higher throughput, onnx runtime generative ai get innovations into production faster, onnx runtime generative ai testimonials, onnx runtime generative ai performance enhancements, onnx runtime generative ai production ready, onnx runtime generative ai lower latency, onnx runtime generative ai higher throughput, onnx runtime generative ai get innovations into production faster, onnx runtime generative ai testimonials, onnx runtime generative ai performance enhancements'
</script>
<svelte:head>
<!-- Dynamic meta tags -->
<meta name="description" content={description} />
<meta name="image" content={image} />
<meta name="author" content={authors.join(', ')} />
<meta name="keywords" content={keywords} />
<!-- Open Graph / Facebook -->
<meta property="og:description" content={description}/>
<meta property="og:image" content={image} />

<!-- Twitter -->
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} />
<meta property="twitter:card" content={imageSquare} />
</svelte:head>

<svelte:head>
<meta
Expand Down
23 changes: 18 additions & 5 deletions src/routes/getting-started/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,26 @@
import Table from './table.svelte';
import githublogo from '../../images/logos/GitHub-Logo.svg';
import ImageTutorials from '../../images/undraw/image_tutorials.svelte';
let description = 'Quickly ramp up with ONNX Runtime, using a variety of platforms to deploy on hardware of your choice.'
let image = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let imageSquare = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let authors = ['']
let keywords = 'getting started, getting started onnx runtime, onnxruntime getting started, onnxruntime tutorial, onnxruntime tutorials, onnxruntime quick start, onnxruntime quickstart, onnxruntime quick start guide, onnxruntime quickstart guide, onnxruntime quick start tutorials, onnxruntime quickstart tutorials, onnxruntime quick start tutorial, onnxruntime quickstart tutorial, onnxruntime quick start documentation, onnxruntime quickstart documentation, onnxruntime quick start instructions, onnxruntime quickstart instructions, onnxruntime quick start guide, onnxruntime quickstart guide, onnxruntime quick start tutorials, onnxruntime quickstart tutorials, onnxruntime quick start tutorial, onnxruntime quickstart tutorial, onnxruntime quick start documentation, onnxruntime quickstart documentation, onnxruntime quick start instructions, onnxruntime quickstart instructions'
</script>

<svelte:head>
<meta
name="description"
content="Quickly ramp up with ONNX Runtime, using a variety of platforms to deploy on hardware of your choice."
/>
<!-- Dynamic meta tags -->
<meta name="description" content={description} />
<meta name="image" content={image} />
<meta name="author" content={authors.join(', ')} />
<meta name="keywords" content={keywords} />
<!-- Open Graph / Facebook -->
<meta property="og:description" content={description}/>
<meta property="og:image" content={image} />

<!-- Twitter -->
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} />
<meta property="twitter:card" content={imageSquare} />
</svelte:head>

<div class="container mx-auto px-10 my-10">
Expand Down
22 changes: 17 additions & 5 deletions src/routes/huggingface/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,25 @@
'ONNX Runtime can be used to accelerate well over 130,000 of the models available on Hugging Face.';
const imgsrc = 'onnxruntimelogo';
const imgalt = 'ONNX Runtime Logo';
let image = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let imageSquare = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let authors = ['']
let keywords = 'onnxruntime, onnx runtime hugging face, onnx runtime hugging face models, onnx runtime hugging face deployment, onnx runtime hugging face performance, onnx runtime hugging face time to market, onnx runtime hugging face deploy anywhere, onnx runtime hugging face boost performance, onnx runtime hugging face improve time to market, onnx runtime hugging face production ready, onnx runtime hugging face lower latency, onnx runtime hugging face higher throughput, onnx runtime hugging face get innovations into production faster, onnx runtime hugging face testimonials, onnx runtime hugging face performance enhancements, onnx runtime hugging face production ready, onnx runtime hugging face lower latency, onnx runtime hugging face higher throughput, onnx runtime hugging face get innovations into production faster, onnx runtime hugging face testimonials, onnx runtime hugging face performance enhancements'
</script>

<svelte:head>
<meta
name="description"
content="Learn about how ONNX Runtime works with hundreds of thousands of models on Hugging Face."
/>
<!-- Dynamic meta tags -->
<meta name="description" content={description} />
<meta name="image" content={image} />
<meta name="author" content={authors.join(', ')} />
<meta name="keywords" content={keywords} />
<!-- Open Graph / Facebook -->
<meta property="og:description" content={description}/>
<meta property="og:image" content={image} />

<!-- Twitter -->
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} />
<meta property="twitter:card" content={imageSquare} />
</svelte:head>

<div class="container mx-auto px-10 my-10">
Expand Down
22 changes: 17 additions & 5 deletions src/routes/inference/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,25 @@
'ONNX Runtime provides a performant solution to inference models from varying source frameworks (PyTorch, Hugging Face, TensorFlow) on different software and hardware stacks. ONNX Runtime Inference takes advantage of hardware accelerators, supports APIs in multiple languages (Python, C++, C#, C, Java, and more), and works on cloud servers, edge and mobile devices, and in web browsers.';
const imgsrc = 'onnxruntimelogo';
const imgalt = 'ONNX Runtime Logo';
let image = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let imageSquare = 'https://i.ibb.co/0YBy62j/ORT-icon-for-light-bg.png'
let authors = ['']
let keywords = 'onnxruntime, onnx runtime inferencing, onnx runtime inferencing models, onnx runtime inferencing deployment, onnx runtime inferencing performance, onnx runtime inferencing time to market, onnx runtime inferencing deploy anywhere, onnx runtime inferencing boost performance, onnx runtime inferencing improve time to market, onnx runtime inferencing production ready, onnx runtime inferencing lower latency, onnx runtime inferencing higher throughput, onnx runtime inferencing get innovations into production faster, onnx runtime inferencing testimonials, onnx runtime inferencing performance enhancements, onnx runtime inferencing production ready, onnx runtime inferencing lower latency, onnx runtime inferencing higher throughput, onnx runtime inferencing get innovations into production faster, onnx runtime inferencing testimonials, onnx runtime inferencing performance enhancements'
</script>

<svelte:head>
<meta
name="description"
content="Learn about how ONNX Runtime can be used in various Machine Learning Inferencing scenarios."
/>
<!-- Dynamic meta tags -->
<meta name="description" content={description} />
<meta name="image" content={image} />
<meta name="author" content={authors.join(', ')} />
<meta name="keywords" content={keywords} />
<!-- Open Graph / Facebook -->
<meta property="og:description" content={description}/>
<meta property="og:image" content={image} />

<!-- Twitter -->
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} />
<meta property="twitter:card" content={imageSquare} />
</svelte:head>

<div class="container mx-auto px-10 my-10">
Expand Down
Loading

0 comments on commit b904a01

Please sign in to comment.