mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:51:43 +00:00
pagina estática de error
This commit is contained in:
parent
7dcb5e8d89
commit
775a8c5587
4 changed files with 30 additions and 4 deletions
|
@ -3,8 +3,8 @@
|
||||||
<head>
|
<head>
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'>
|
||||||
<title>Sutty</title>
|
<title>Sutty</title>
|
||||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
<link rel="stylesheet" href="/bootstrap.min.css">
|
||||||
<script defer type="text/javascript" src="https://sutty.nl/assets/js/client_side_i18n.js"></script>
|
<script defer type="text/javascript" src="/client_site_i18n.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class='container-fluid'>
|
<div class='container-fluid'>
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
<head>
|
<head>
|
||||||
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'>
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'>
|
||||||
<title>Sutty</title>
|
<title>Sutty</title>
|
||||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
<link rel="stylesheet" href="/bootstrap.min.css">
|
||||||
<script defer type="text/javascript" src="https://sutty.nl/assets/js/client_side_i18n.js"></script>
|
<script defer type="text/javascript" src="/client_site_i18n.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body class=''>
|
<body class=''>
|
||||||
<div class='container-fluid'>
|
<div class='container-fluid'>
|
||||||
|
|
7
public/bootstrap.min.css
vendored
Normal file
7
public/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
19
public/client_site_i18n.js
Normal file
19
public/client_site_i18n.js
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
const available_locales = ["es","en"];
|
||||||
|
|
||||||
|
let current_locale = navigator.languages.map(function(language) {
|
||||||
|
language.split('-')[0];
|
||||||
|
}).find(function(locale) {
|
||||||
|
return available_locales.includes(available_locales);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (current_locale == undefined) current_locale = available_locales[0];
|
||||||
|
|
||||||
|
available_locales.forEach(function(locale) {
|
||||||
|
if (locale == current_locale) return;
|
||||||
|
|
||||||
|
document.querySelectorAll('[lang='+locale+']').forEach(function(el) {
|
||||||
|
el.parentNode.removeChild(el);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in a new issue