-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathobservablehq.config.js
More file actions
95 lines (91 loc) · 3.68 KB
/
Copy pathobservablehq.config.js
File metadata and controls
95 lines (91 loc) · 3.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
export default {
// The app’s title; used in the sidebar and webpage titles.
title: "Federated analysis for researchers",
// The pages and sections in the sidebar. If you don’t specify this option,
// all pages will be listed in alphabetical order. Listing pages explicitly
// lets you organize them into sections and have unlisted pages.
// pages: [
// {
// name: "Examples",
// pages: [
// {name: "Dashboard", path: "/example-dashboard"},
// {name: "Report", path: "/example-report"}
// ]
// }
// ],
pages: [
{
name: "Concepts",
path: "/concepts",
pages: [
{name: "Isolated analysis", path: "/concepts/designing-isolated-analysis"},
{name: "Get analyses by requirements", path: "/concepts/analysis-breakdown"},
{name: "Categorisation of analysis methods", path: "/concepts/Categorisation"},
],
collapsible: true
},
{
name: "Five Safes TES",
path: "/five-safes-tes",
pages: [
{name: "Submitting to Five Safes TES", path: "/five-safes-tes/submitting-to-5s-tes"},
{name: "Five Safes TES executors", path: "/five-safes-tes/executors-overview"},
{name: "↳ Standalone containers", path: "/five-safes-tes/executors"},
{name: "↳ WfExS orchestrated containers", path: "/five-safes-tes/wfexs-executormodel"},
{name: "Collecting results", path: "/five-safes-tes/collecting-results"},
{name: "Five Safes TES messages", path: "/five-safes-tes/5s-tes-messages"}
],
collapsible: true
},
{
name: "Examples in Five Safes TES",
path: "/examples-in-five-safes-tes",
pages: [
{name: "Discovery", path: "/examples-in-five-safes-tes/discovery"},
{name: "Contingency tables", path: "/examples-in-five-safes-tes/contingency-tables"},
{name: "Descriptive statistics", path: "/examples-in-five-safes-tes/descriptive-statistics"},
{name: "Genomics Use Case", path: "/examples-in-five-safes-tes/genomics-usecase"},
],
collapsible: true
},
{
name: "RO-Crate",
path: "/ro-crate",
pages: [],
collapsible: false
},
// {name: "WfExS", path: "/wfexs"}
],
// Content to add to the head of the page, e.g. for a favicon:
head: `
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-n8MVd4RsNIU0tAv4ct0nTaAbDJwPJzDEaqSD1odI+WdtXRGWt2kTvGFasHpSy3SV" crossorigin="anonymous">
`,
// The path to the source root.
root: "src",
// Some additional configuration options and their defaults:
theme: "air", // try "light", "dark", "slate", etc.
// header: "", // what to show in the header (HTML)
footer: `
<div style="display:grid; grid-template-columns: 30% 30% 30%">
<div>
<img src="EOSC-ENTRUST LOGO_Horizontal.png" alt="EOSC-ENTRUST logo">
</div>
<div>
<img src="Nottingham_Blue_single_colour_logo_SCREEN.png" alt="University of Nottingham logo">
</div>
<div>
<img src="primary.svg" alt="Federated research logo">
</div>
</div>
`, // what to show in the footer (HTML)
// sidebar: true, // whether to show the sidebar
// toc: true, // whether to show the table of contents
pager: false, // whether to show previous & next links in the footer
// output: "dist", // path to the output root for build
search: true, // activate search
// linkify: true, // convert URLs in Markdown to links
// typographer: false, // smart quotes and other typographic improvements
// preserveExtension: false, // drop .html from URLs
// preserveIndex: false, // drop /index from URLs
};