1
0
mirror of https://github.com/alexandrev/xslt-lab.git synced 2026-09-18 19:43:16 +00:00
Files
xslt-lab/frontend/index.html
T

66 lines
2.5 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>XSLT Playground - Online XSLT Editor & Tester</title>
<meta
name="description"
content="Free online XSLT editor, tester and optimizer. Experiment with XML transformations in our interactive XSLT playground and optimize your stylesheets."
/>
<meta
name="keywords"
content="xslt, xslt editor, xsl editor, xsl tester, xslt tester, xsl playground, xslt playground, xslt optimizer, xslt tool, xml transformation"
/>
<meta property="og:title" content="XSLT Playground - Online XSLT Editor & Tester" />
<meta
property="og:description"
content="Free online XSLT editor, tester and optimizer. Experiment with XML transformations in our interactive XSLT playground and optimize your stylesheets."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://xsltplayground.com/" />
<meta property="og:image" content="/logo.svg" />
<link rel="canonical" href="https://xsltplayground.com/" />
<script type="module" src="/env.js"></script>
<script>
if (window.env && window.env.VITE_ADSENSE_CLIENT) {
const s = document.createElement('script');
s.async = true;
s.src =
'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=' +
window.env.VITE_ADSENSE_CLIENT;
s.crossOrigin = 'anonymous';
document.head.appendChild(s);
}
if (window.env && window.env.VITE_GA_ID) {
const g = document.createElement('script');
g.async = true;
g.src =
'https://www.googletagmanager.com/gtag/js?id=' + window.env.VITE_GA_ID;
document.head.appendChild(g);
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', window.env.VITE_GA_ID);
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<script
type="text/javascript"
src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js"
data-name="bmc-button"
data-slug="alexandrev"
data-color="#FFDD00"
data-emoji=""
data-font="Cookie"
data-text="Buy me a coffee"
data-outline-color="#000000"
data-font-color="#000000"
data-coffee-color="#ffffff"
></script>
</body>
</html>