hubl/src/dependencies.pug

66 lines
3.7 KiB
Plaintext
Raw Normal View History

2020-10-08 08:21:36 +00:00
script(src="https://browser.sentry-cdn.com/5.25.0/bundle.tracing.min.js" defer)
2020-10-08 08:07:00 +00:00
script(type="module" src="/components/sentry.js" defer)
2020-05-20 14:42:11 +00:00
script(type="module" src="/components/hubl-search-users.js" defer)
2020-05-19 16:22:00 +00:00
script(type="module" src="/components/hubl-status.js" defer)
2020-06-18 18:02:54 +00:00
script(type="module" src="/components/hubl-reactivity.js" defer)
2020-05-19 16:22:00 +00:00
2020-09-23 10:15:54 +00:00
script(type="module" src="https://unpkg.com/@startinblox/core@0.12" defer)
2020-05-08 13:27:44 +00:00
//- script(type="module" src="/lib/sib-core/dist/index.js" defer)
2020-09-23 10:15:54 +00:00
script(type="module" src="https://unpkg.com/@startinblox/oidc@0.10" defer)
2020-09-14 13:41:10 +00:00
//- script(type="module" src="/lib/sib-auth/index.js" defer)
2020-05-08 13:27:44 +00:00
2020-10-19 14:12:14 +00:00
script(type="module" src="https://unpkg.com/@startinblox/router@0.10" defer)
2020-09-14 13:41:10 +00:00
//- script(type="module" src="/lib/sib-router/src/index.js" defer)
2020-05-08 13:27:44 +00:00
2020-09-24 07:58:26 +00:00
script(type="module" src="https://unpkg.com/@startinblox/component-notifications@0.7" defer)
2020-09-14 13:41:10 +00:00
//- script(type="module" src="/lib/sib-notifications/index.js" defer)
2020-05-08 13:27:44 +00:00
2020-08-31 20:55:23 +00:00
if (endpoints.events || (endpoints.get && endpoints.get.events)) && (endpoints.typeevents || (endpoints.get && endpoints.get.typeevents))
2020-10-02 09:45:54 +00:00
script(type="module" src="https://unpkg.com/@startinblox/component-event@1.2" defer)
//- script(type="module" src="/lib/sib-event-component/sib-event.js" defer)
2020-08-31 20:55:23 +00:00
if (endpoints.resources || (endpoints.get && endpoints.get.resources)) && (endpoints.resourceskeywords || (endpoints.get && endpoints.get.resourceskeywords)) && (endpoints.resourcestypes || (endpoints.get && endpoints.get.resourcestypes))
script(type="module" src="https://unpkg.com/@startinblox/component-resource@1.0" defer)
//- script(type="module" src="/lib/sib-resource/sib-resource.js" defer)
2020-05-08 13:27:44 +00:00
if endpoints.joboffers || (endpoints.get && endpoints.get.joboffers)
2020-10-28 10:25:11 +00:00
script(type="module" src="https://unpkg.com/@startinblox/component-job-board@1.1" defer)
2020-06-18 18:09:52 +00:00
//- script(type="module" src="/lib/solid-job-board/dist/index.js" defer)
2020-05-08 13:27:44 +00:00
2020-05-26 10:29:08 +00:00
if (endpoints.uploads || (endpoints.get && endpoints.get.uploads)) && (endpoints.skills || (endpoints.get && endpoints.get.skills)) && (endpoints.users || (endpoints.get && endpoints.get.users))
2020-10-28 10:25:11 +00:00
script(type="module" src="https://unpkg.com/@startinblox/component-directory@1.1" defer)
2020-06-18 18:09:52 +00:00
//- script(type="module" src="/lib/solid-directory/dist/index.js" defer)
2020-05-08 13:27:44 +00:00
if endpoints.dashboards || (endpoints.get && endpoints.get.dashboards)
2020-09-23 10:15:54 +00:00
script(type="module" src="https://unpkg.com/@startinblox/component-dashboard@0.5" defer)
2020-06-18 18:09:52 +00:00
//- script(type="module" src="/lib/solid-dashboard/dist/index.js" defer)
2020-05-08 13:27:44 +00:00
if endpoints.users || (endpoints.get && endpoints.get.users)
2020-10-27 12:21:20 +00:00
script(type="module" src="https://unpkg.com/@startinblox/component-chat@1.2" defer)
2020-06-18 18:09:52 +00:00
//- script(type="module" src="/lib/solid-xmpp-chat/dist/index.js" defer)
2020-05-08 13:27:44 +00:00
2020-08-11 15:57:12 +00:00
if endpoints.polls || (endpoints.get && endpoints.get.polls)
script(type="module" src="https://unpkg.com/@startinblox/component-poll@1.0" defer)
2020-09-30 22:13:58 +00:00
//- script(type="module" src="/lib/sib-polls-component/index.js" defer)
2020-08-11 15:57:12 +00:00
2020-10-07 12:25:53 +00:00
script(src="https://cdn.jsdelivr.net/npm/sweetalert2@10")
2020-05-08 13:27:44 +00:00
script(src="/scripts/index.js" defer)
2019-10-16 15:10:00 +00:00
//- Stylesheets
link(rel='stylesheet', href='/styles/index.css')
link(rel='stylesheet', href='https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700&subset=latin-ext')
link(rel='stylesheet', href='https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i')
2019-10-16 15:10:00 +00:00
//- Context - Fix for LDFlex
script(data-default-context, type="application/ld+json")
2019-12-02 14:22:25 +00:00
| {
| "inbox": "http://happy-dev.fr/owl/#inbox",
| "object": "http://happy-dev.fr/owl/#object",
| "author": "http://happy-dev.fr/owl/#author",
| "account": "http://happy-dev.fr/owl/#account",
| "jabberID": "foaf:jabberID",
2020-03-20 13:48:56 +00:00
| "picture": "foaf:depiction"
2019-12-02 14:22:25 +00:00
| }