saynul/saynul.html

52 lines
1.3 KiB
HTML
Raw Normal View History

2015-03-30 18:31:31 +02:00
<head>
<title>C'est nul !</title>
2015-03-31 16:41:29 +02:00
<meta charset="utf-8">
2015-03-30 18:44:30 +02:00
<style type="text/css">
h1 {
font-size: 250%;
text-align: center;
margin-top: 50px;
}
p {
margin-top: 10em;
font-size: 75%;
text-color: grey;
}
</style>
<script src="punycode.min.js">
</script>
2015-03-30 18:44:30 +02:00
<script type="text/javascript">
window.onload = clear;
var s_base_domain = "saynul.eu";
var s_replace = ", c'est nul !";
2015-03-30 18:31:31 +02:00
function clear() {
// Leave the default content if no subdomain given.
if (location.host != s_base_domain) {
2015-03-30 18:31:31 +02:00
var s_hostname = punycode.toUnicode(location.host)
var s_txt = s_hostname.replace("." + s_base_domain, s_replace);
var apostrophe = s_txt.match(/(l)\./);
if (apostrophe){
2017-11-13 20:02:42 +01:00
s_txt = s_txt.replace(/l\./, "l'");
}
s_txt = s_txt.replace(/\./g, " ");
s_txt = s_txt.charAt(0).toUpperCase() + s_txt.slice(1);
2015-03-30 18:31:31 +02:00
// header tag and page title
document.getElementById("t").innerHTML = s_txt;
document.title = s_txt;
};
};
</script>
</head>
2015-03-30 18:31:31 +02:00
<body>
<h1 id="t">C'est nul !</h1>
<p>Hey ! Pour râler autrement, allez voir <a href="http://saynul.grmbl.me/">grmbl.me</a><p>
2015-03-30 18:31:31 +02:00
</body>