From 15afd3b9519296074c0e38379ffad261094750a4 Mon Sep 17 00:00:00 2001 From: "L. Bradley LaBoon" Date: Wed, 27 Jan 2016 14:52:09 -0500 Subject: [PATCH] Beginnings of multilanguage support --- global.css | 3 +++ index.shtml | 8 +++++++- js/intl.js | 4 ++++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 js/intl.js diff --git a/global.css b/global.css index 35ef959..6aa5382 100644 --- a/global.css +++ b/global.css @@ -63,6 +63,9 @@ body img { border: 0 } +:lang(de),:lang(es),:lang(jp) +{ display: none; } + #left-content { float: left; diff --git a/index.shtml b/index.shtml index 50e4171..f69cade 100644 --- a/index.shtml +++ b/index.shtml @@ -9,11 +9,17 @@ +
-

Home

+

+ Home + Página principal + Startseite + ホームページ +

diff --git a/js/intl.js b/js/intl.js new file mode 100644 index 0000000..5c3c9e3 --- /dev/null +++ b/js/intl.js @@ -0,0 +1,4 @@ +(function() +{ + // Internationalization stuff +})();