72 lines
No EOL
2.4 KiB
HTML
72 lines
No EOL
2.4 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="description" content="">
|
|
|
|
|
|
<title>fateforge-tools</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
|
|
</head>
|
|
|
|
<body>
|
|
<button onclick="changeLangEN()">English</button>
|
|
<button onclick="changeLangFR()">French</button>
|
|
|
|
<div data-localize="title">FateforgeTools</div>
|
|
<div data-localize="desc">
|
|
A suite of tools for Fateforge players and Masters.
|
|
</div>
|
|
|
|
|
|
<footnote>
|
|
<p xmlns:cc="http://creativecommons.org/ns#" xmlns:dct="http://purl.org/dc/terms/">
|
|
<a property="dct:title" rel="cc:attributionURL" href="http://fateforge.tool">fateforge.tool</a>
|
|
by <span property="cc:attributionName">Lucas Peter</span> is licensed
|
|
under
|
|
<a href="http://creativecommons.org/licenses/by-nc/4.0/?ref=chooser-v1" target="_blank"
|
|
rel="license noopener noreferrer" style="display: inline-block">CC BY-NC 4.0<img style="
|
|
height: 22px !important;
|
|
margin-left: 3px;
|
|
vertical-align: text-bottom;
|
|
" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" /><img style="
|
|
height: 22px !important;
|
|
margin-left: 3px;
|
|
vertical-align: text-bottom;
|
|
" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1" /><img style="
|
|
height: 22px !important;
|
|
margin-left: 3px;
|
|
vertical-align: text-bottom;
|
|
" src="https://mirrors.creativecommons.org/presskit/icons/nc.svg?ref=chooser-v1" /></a>
|
|
</p>
|
|
</footnote>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="lib/jquery.min.js"></script>
|
|
<script type="text/javascript" src="lib/jquery.localize.js"></script>
|
|
|
|
<script>
|
|
// In a browser where the language is set to French
|
|
$("[data-localize]").localize("main", { pathPrefix: "lang" });
|
|
|
|
// You can also override the language detection, and pass in a language code
|
|
//$("[data-localize]").localize("main", { language: "fr" });
|
|
function changeLangFR() {
|
|
$("[data-localize]").localize("main", {
|
|
pathPrefix: "lang",
|
|
language: "fr",
|
|
});
|
|
}
|
|
function changeLangEN() {
|
|
$("[data-localize]").localize("main", {
|
|
pathPrefix: "lang",
|
|
language: "en",
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
|
|
</html> |