doctype html
|
|
html
|
head
|
meta(charset="utf-8")
|
|
meta(name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height")
|
|
meta(name="mobile-web-app-capable" content="yes")
|
meta(name="apple-mobile-web-app-title" content="furnview")
|
|
link(rel="apple-touch-icon" sizes="128x128" href="/images/favicon.png")
|
link(rel="apple-touch-icon-precomposed" sizes="128x128" href="/images/favicon.png")
|
|
link(rel="icon" sizes="128x128" href="/images/favicon.png")
|
|
// STYLES
|
link(rel="stylesheet", href="/styles/0fc145572b09ffbad242.dhmc.css")
|
// STYLES END
|
// SCRIPTS
|
script(src="/js/0fc145572b09ffbad242.externals.js")
|
// SCRIPTS END
|
script(src="/js/unsupported.js")
|
|
if g_customerNo
|
script.
|
var g_customerNo = !{g_customerNo};
|
|
if g_auth_id
|
script.
|
var g_auth_id = !{JSON.stringify(g_auth_id)};
|
|
|
title furnview
|
|
body#furnview-start
|
img(src="/images/furnview.png")
|
|
.dhmc-vspacer-20
|
|
.ui.active.centered.inline.loader
|
|
script.
|
// carry the identity token into /local (cookieless fallback for these routes)
|
var authParam = window.g_auth_id ? ("?auth_id=" + encodeURIComponent(window.g_auth_id)) : "";
|
if (window.g_customerNo) {
|
window.location = "/local/" + window.g_customerNo + authParam;
|
}
|
else {
|
window.location = "/local" + authParam;
|
}
|