hubl/src/dependencies.pug

42 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-09-28 19:20:15 +00:00
// Scripts
2018-10-05 11:07:14 +00:00
//- script(src="https://unpkg.com/@webcomponents/webcomponentsjs@1.2.7/webcomponents-loader.js")
2019-01-07 15:37:08 +00:00
//script(src="/lib/webcomponentsjs/webcomponents-loader.js")
2018-09-28 19:20:15 +00:00
//- script(src="lib/html-imports.js")
2018-10-17 21:04:03 +00:00
script(src="/lib/oidc-client.js")
2018-10-12 17:11:13 +00:00
script(
2018-12-07 16:25:05 +00:00
src="https://cdn.happy-dev.fr/sib-oidc/sib-oidc.js"
2018-11-16 10:33:39 +00:00
data-authority=`${sdn}/openid/`,
2018-11-16 11:31:15 +00:00
data-client_id=`${client_id}`,
2018-10-12 17:11:13 +00:00
data-response_type='id_token token',
data-scope='openid profile email',
data-automaticSilentRenew='true',
data-loadUserInfo='true'
)
2018-10-05 09:37:48 +00:00
script(src="/scripts/index.js")
2019-01-07 15:37:08 +00:00
script(type="module" src="/scripts/hd-widgets.js")
2018-09-28 19:20:15 +00:00
// Stylesheets
2018-10-05 09:37:48 +00:00
link(rel='stylesheet', href='/lib/normalize.css')
link(rel='stylesheet', href='/styles/index.css')
2018-09-28 19:20:15 +00:00
link(
rel='stylesheet'
2018-10-05 09:37:48 +00:00
href='https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700&subset=latin-ext'
2018-09-28 19:20:15 +00:00
)
2018-10-05 09:37:48 +00:00
link(href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet")
2018-09-28 19:20:15 +00:00
// Web components
//- local
2019-01-07 15:37:08 +00:00
//script(type="module" src="/lib/sib-core/sib-display.js")
//script(type="module" src="/lib/sib-router/sib-router.js")
//script(type="module" src="/lib/sib-core/sib-form.js")
link(rel='import', href='/lib/sib-chat/sib-chat.html')
2018-09-28 19:20:15 +00:00
//- cdn
2019-01-07 15:37:08 +00:00
script(type="module" src="https://cdn.happy-dev.fr/sib-core/sib-display.js")
script(type="module" src="https://cdn.happy-dev.fr/sib-router/sib-router.js")
script(type="module" src="https://cdn.happy-dev.fr/sib-core/sib-form.js")