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")
|
2018-10-05 09:37:48 +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-05 09:37:48 +00:00
|
|
|
script(src='/lib/sib-chat/3rdparty/sib-oidc-client.js')
|
|
|
|
script(src="/scripts/index.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
|
2018-10-05 09:37:48 +00:00
|
|
|
link(rel='import', href='/lib/sib-core/sib-display.html')
|
|
|
|
link(rel='import', href='/lib/sib-router/sib-router.html')
|
|
|
|
link(rel='import', href='/lib/sib-chat/sib-chat.html')
|
2018-09-28 19:20:15 +00:00
|
|
|
|
|
|
|
//- cdn
|
|
|
|
link(rel='import', href="https://cdn.happy-dev.fr/sib-core/sib-display.html")
|
|
|
|
link(rel='import', href="https://cdn.happy-dev.fr/sib-router/sib-router.html")
|
2018-10-05 11:07:14 +00:00
|
|
|
link(rel='import', href="https://cdn.happy-dev.fr/sib-chat/sib-chat.html")
|