bcom/includes/meta.php
Mysaa 38ec48c9fc Maintenant, tout dans le executor.php. Fin de tempPreMega.
Ajout d'un super simulateur de tours de Monoï dans la page 404.
2021-06-06 12:48:11 +02:00

44 lines
1.6 KiB
PHP

<title>Le site de tous les bernards !</title>
<meta charset="utf-8" />
<meta name="keywords" lang="fr" content="cercloid officiel, zeidhyx project" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="css/style.css" />
<script type="text/x-mathjax-config"> MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]},
CommonHTML: { linebreaks: { automatic: true }, scale: ((window.innerWidth || document.body.clientWidth)<600)?70:100},
"HTML-CSS": { linebreaks: { automatic: true } },
SVG: { linebreaks: { automatic: true } }});
</script>
<script type="text/javascript">
var headBloc = document.getElementsByTagName("head")[0];
//Load css according to the browser
var link = document.createElement( "link" );
link.type = "text/css";
link.rel = "stylesheet";
link.media = "screen,print";
if(!!navigator.userAgent.match(/firefox/i)){
link.href = "css/firefoxStyle.css";
}else{
link.href = "css/noFirefoxStyle.css";
}
headBloc.appendChild( link );
//Load server jQuery if not loaded
var jQuerySrc = 'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_CHTML'
var mathJaxSrc = 'http://code.jquery.com/jquery-latest.min.js'
if(!navigator.onLine){
jQuerySrc = 'includes/jquery-latest.min.js';
mathJaxSrc = "includes/MathJax/MathJax.js?config=TeX-AMS_CHTML";
}
var script = document.createElement("script");
script.type = "text/javascript";
script.src = jQuerySrc;
headBloc.appendChild(script);
script = document.createElement("script");
script.type = "text/javascript";
script.src = mathJaxSrc;
headBloc.appendChild(script);
</script>