-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
544 lines (449 loc) · 23 KB
/
config.toml
File metadata and controls
544 lines (449 loc) · 23 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
# The URL the site will be built for
base_url = "https://sciencelive4all.org"
# The site title and description
title = "Science Live - The Platform for FAIR Research"
description = "Transform research into FAIR nanopublications. Create, discover, cite, and embed structured knowledge bricks."
# The default language
default_language = "en"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
# The taxonomies to be rendered for the site
taxonomies = [
{name = "categories", paginate_by = 10},
{name = "tags", paginate_by = 10},
]
# Whether to do syntax highlighting
highlight_code = true
# The theme to use for code highlighting
highlight_theme = "tomorrow-night"
# Whether to generate a feed
generate_feed = true
# The filename to use for the feed
feed_filename = "rss.xml"
# The number of articles to include in the feed
feed_limit = 20
# Configuration of the Markdown rendering
[markdown]
highlight_code = true
external_links_target_blank = true
external_links_no_follow = false
external_links_no_referrer = false
smart_punctuation = true
# Configuration for the search
[search]
include_title = true
include_description = false
include_content = true
# Configuration for the link checker
[link_checker]
skip_prefixes = [
"https://",
"http://",
]
# Various slugification strategies
[slugify]
paths = "safe"
taxonomies = "safe"
anchors = "safe"
# ══════════════════════════════════════════════════════════════════════════════
# All [extra] flat keys must come BEFORE any [extra.subsection] headers
# (TOML scoping rule: keys after [extra.foo] belong to extra.foo, not extra)
# ══════════════════════════════════════════════════════════════════════════════
[extra]
# Analytics
gtm_id = "GTM-WSJ3ZZ29"
# Brand
brand_text = "Science"
brand_live = "Live"
logo_path = "assets/img/sciencelive-logo.png"
logo_alt = "Science Live Logo"
# Author information
author = "Anne Fouilloux"
author_email = "anne.fouilloux@gmail.com"
author_orcid = "0000-0002-1784-2920"
# Social links
github = "https://github.com/sciencelivehub"
twitter = "https://twitter.com/sciencelive"
# ── Hero ─────────────────────────────────────────────────────────────────────
hero_title_1 = "Turn research into"
hero_title_2 = "building blocks others can use"
hero_title_3 = ""
hero_subtitle = "Create structured, citable nanopublications from your research. Organizations and industry speed up R&D, preserve knowledge, and demonstrate impact."
hero_badge_text = "Free forever for researchers"
hero_badge_icon = "check-circle"
hero_primary_button_text = "Try the Platform"
hero_primary_button_url = "https://platform.sciencelive4all.org"
hero_primary_button_icon = "rocket"
hero_secondary_button_text = "Contact Us"
hero_secondary_button_url = "#contact"
hero_secondary_button_icon = "envelope"
# ── Features header ─────────────────────────────────────────────────────────
features_section_tag = "PLATFORM FEATURES"
features_section_title = "Everything you need for FAIR research"
# ── CTA Section ──────────────────────────────────────────────────────────────
cta_title = "Ready to transform your research?"
cta_subtitle = "Join researchers and organizations already using Science Live to create FAIR, structured nanopublications."
cta_primary_button_text = "Try the Platform"
cta_primary_button_url = "https://platform.sciencelive4all.org"
cta_primary_button_icon = "rocket"
cta_secondary_button_text = "Contact Us"
cta_secondary_button_url = "#contact"
cta_secondary_button_icon = "envelope"
# ── Footer ───────────────────────────────────────────────────────────────────
footer_description = "The open platform for FAIR scientific nanopublications."
footer_copyright_text = "Science Live is an open platform supporting Open Science and collaboration."
# ══════════════════════════════════════════════════════════════════════════════
# Navigation (array of inline tables — still under [extra])
# ══════════════════════════════════════════════════════════════════════════════
[[extra.nav_links]]
name = "Tools"
url = "#tools"
class = "primary"
[[extra.nav_links]]
name = "Community"
url = "#what-is-it"
class = "primary"
[[extra.nav_links]]
name = "Organizations & Industry"
url = "#organizations"
class = "primary"
[[extra.nav_links]]
name = "Roadmap"
url = "#roadmap"
class = "primary"
[[extra.nav_links]]
name = "Docs"
url = "https://sciencelive4all.org/science-live-platform/"
class = "secondary"
# ── Funders ──────────────────────────────────────────────────────────────────
# Rendered as a "Funded by" strip directly below the hero.
# Label text is hardcoded in templates/index.html (TOML scoping prevents a flat
# `funders_label` key here — it would bind to the preceding [[extra.nav_links]]).
[[extra.funders]]
name = "Astera Institute"
logo = "/assets/img/Astera-logo.png"
url = "https://astera.org"
# ── Features (array of cards) ────────────────────────────────────────────────
[[extra.features]]
title = "Create Nanopublications"
description = "Transform findings, methods, and data into structured, FAIR-compliant nanopublications using guided templates."
icon = "file-circle-plus"
link = "https://platform.sciencelive4all.org/np/create"
link_text = "Start creating"
[[extra.features]]
title = "Discover & Search"
description = "Find relevant nanopublications across the decentralized network. Filter by topic, author, type, or organization."
icon = "magnifying-glass"
link = "https://platform.sciencelive4all.org/np/"
link_text = "Explore"
[[extra.features]]
title = "Cite & Get Credited"
description = "Every nanopublication is citable with a permanent URI and linked to your ORCID for proper attribution."
icon = "quote-left"
link = "https://platform.sciencelive4all.org"
link_text = "Learn more"
[[extra.features]]
title = "PRISMA Systematic Reviews"
description = "Conduct structured systematic reviews with PRISMA workflows. Each step becomes a traceable nanopublication."
icon = "clipboard-check"
link = "https://platform.sciencelive4all.org/np/create"
link_text = "Start a review"
[[extra.features]]
title = "Zotero Integration"
description = "Create nanopublications directly from your Zotero library with our browser plugin."
icon = "puzzle-piece"
link = "https://sciencelive4all.org/science-live-platform/zotero"
link_text = "Get the plugin"
[[extra.features]]
title = "Embed Anywhere"
description = "Embed interactive nanopublication viewers on any website with a simple iframe. Customizable themes and branding."
icon = "code"
link = "https://platform.sciencelive4all.org/embed-demo.html"
link_text = "See examples"
# ── Footer links ─────────────────────────────────────────────────────────────
[[extra.footer_links]]
text = "Privacy Policy"
url = "/privacy/"
[[extra.footer_links]]
text = "Data Policy"
url = "/policies/"
[[extra.footer_links]]
text = "Terms of Service"
url = "/terms/"
[[extra.footer_sections]]
title = ""
links = []
# ══════════════════════════════════════════════════════════════════════════════
# Subsections (each [extra.foo] starts a new TOML table)
# ══════════════════════════════════════════════════════════════════════════════
# ── What Is It ───────────────────────────────────────────────────────────────
[extra.what_is_it]
tag = "WHAT IS A NANOPUBLICATION?"
title = "Your research, in building blocks others can build on"
description = "A nanopublication captures one clear piece of your research — a finding, a dataset, a replication result — in a format that's citable, searchable, and permanently yours. No more invisible work buried in PDFs."
embed_uri = "https://w3id.org/sciencelive/np/RAMFMgw2oNSeAEhPjg2Dco_0vYWQ1igTNbkT0_5177yV8"
embed_caption = "A scientific claim (AIDA sentence) — one of many nanopublication types you can create"
# ── How It Works ─────────────────────────────────────────────────────────────
[extra.how_it_works]
tag = "HOW IT WORKS"
title = "From research to reusable knowledge"
subtitle = "Researchers create. Everyone discovers. Organizations embed and track. One platform, three workflows."
[[extra.how_it_works.cards]]
title = "Create"
icon = "file-circle-plus"
description = "Researchers create nanopublications from their work using guided templates or the Zotero plugin."
features = [
"Web platform with 15+ guided templates",
"Zotero plugin for your existing workflow",
"PRISMA systematic review tools",
"ORCID-signed, permanently citable",
]
cta_text = "Try the Platform"
cta_url = "https://platform.sciencelive4all.org"
[[extra.how_it_works.cards]]
title = "Discover"
icon = "magnifying-glass"
description = "Search and explore structured research across the decentralized nanopub network."
features = [
"Machine-readable structured queries",
"Filter by topic, author, or type",
"Full provenance on every result",
"Cite and build upon others' work",
]
cta_text = "Explore"
cta_url = "https://platform.sciencelive4all.org/np/"
[[extra.how_it_works.cards]]
title = "Embed & Track"
icon = "code"
description = "Organizations embed nanopubs on their website and track institutional research output."
features = [
"Customizable iframe embed viewer",
"Branded themes for your organization",
"Institutional dashboard and analytics",
"Preserve knowledge across team changes",
]
cta_text = "Learn about embedding"
cta_url = "https://sciencelive4all.org/science-live-platform/for-organizations/embed/"
# ── For Organizations & Industry ─────────────────────────────────────────────
[extra.orgs]
tag = "FOR ORGANIZATIONS & INDUSTRY"
title = "Make your research investment count"
subtitle = "Universities meet funder mandates and turn research into real-world impact. Companies cut R&D time with validated findings and on-demand replications."
# ── Universities side ───────────────────────────────────────────────────────
[extra.orgs.universities]
icon = "university"
title = "For Universities & Research Institutes"
tagline = "Meet funder mandates. Turn research into impact."
description = "Funders demand FAIR data and measurable impact. But too much research stays locked in PDFs that industry and society never see. Science Live makes your researchers' contributions structured, discoverable, and ready to be used by the people who need them."
[[extra.orgs.universities.points]]
icon = "circle-check"
title = "FAIR compliance, automatic"
description = "Horizon Europe, NIH, NSF, and most national funders now mandate FAIR data plans. Every nanopublication is FAIR by design — demonstrate compliance without extra documentation."
[[extra.orgs.universities.points]]
icon = "rocket"
title = "From research to impact"
description = "Make findings discoverable by industry, policymakers, and other researchers. Build the impact case studies funders increasingly require — backed by real, traceable contributions."
[[extra.orgs.universities.points]]
icon = "chart-column"
title = "Research output reporting"
description = "Track structured contributions across departments — datasets, methods, replications, claims. Generate reports for REF, accreditation, and internal evaluations in minutes, not months."
[[extra.orgs.universities.points]]
icon = "eye"
title = "Visibility for RSEs and research engineers"
description = "Make hard-to-justify staff contributions measurable and discoverable. Show funders and industry what your research engineering team actually delivers."
# ── Industry side ───────────────────────────────────────────────────────────
[extra.orgs.industry]
icon = "briefcase"
title = "For Industry & R&D Teams"
tagline = "Cut R&D validation time from weeks to minutes"
description = "Your team spends weeks reading papers, attending conferences, and waiting on contract research orgs. Science Live gives you direct access to structured, validated findings — and lets you commission replications on what matters to your business."
[[extra.orgs.industry.points]]
icon = "flask"
title = "Commission targeted replications"
description = "The only platform where you can request a replication study on a specific finding. Get independent validation on the claims your investment depends on — without hiring a CRO."
[[extra.orgs.industry.points]]
icon = "bolt"
title = "Skip the preliminary work"
description = "Browse structured findings directly. Reproducible methods, ready-to-use datasets, replicated claims — try them yourself in minutes instead of weeks of literature review."
[[extra.orgs.industry.points]]
icon = "magnifying-glass-chart"
title = "Trust over AI summaries"
description = "Every claim is cryptographically signed and traceable to its author and methodology. No hallucinated summaries — full provenance on every finding."
[[extra.orgs.industry.points]]
icon = "handshake"
title = "Direct researcher engagement"
description = "Identify and contact the researchers behind the work that matters to you. Bypass academic publishing delays and CRO markups."
# ── Showcase ─────────────────────────────────────────────────────────────────
[extra.showcase]
tag = "SHOWCASE"
title = "Real nanopublications, live on the network"
subtitle = "These are actual nanopublications created by researchers using Science Live"
[[extra.showcase.items]]
title = "Scientific Claim (AIDA Sentence)"
description = "A structured scientific assertion with provenance and attribution"
uri = "https://w3id.org/np/RAY7IdUcyQ8P_WCO6o9NDMz9q2LN6w7bl7ZJnsHQ_sO5g"
height = "500"
[[extra.showcase.items]]
title = "FAIR Dataset"
description = "A dataset description with metadata, creators, license, and access information"
uri = "https://w3id.org/np/RAywW3taqJeRBg2K1nk-ZU5_XnfDGZEt4gFEQOKHdPOqs"
height = "500"
[[extra.showcase.items]]
title = "FORRT Replication Study"
description = "A structured replication result from the FORRT reproducibility project"
uri = "https://w3id.org/np/RADCSRkRrlaOzRZ-lkPh1dnvthkhqFz55eGr1wtpW03vk"
height = "600"
# ── Pricing ──────────────────────────────────────────────────────────────────
[extra.pricing]
tag = "PRICING"
title = "Simple, transparent pricing"
subtitle = "Free for individual researchers. Subscriptions for organizations."
[[extra.pricing.tiers]]
name = "Researchers"
price = "Free"
price_period = ""
description = "Any individual researcher — academic or in industry"
cta_text = "Try the Platform"
cta_url = "https://platform.sciencelive4all.org"
cta_style = "secondary"
features = [
"Create unlimited nanopublications",
"ORCID-linked attribution",
"Full search and discovery",
"Zotero plugin access",
"PRISMA workflow tools",
"Community validation",
]
[[extra.pricing.tiers]]
name = "Research Organizations"
price = "€3,000"
price_period = "/year"
description = "Universities, research institutes, government agencies"
is_featured = true
cta_text = "Contact Us"
cta_url = "#contact"
cta_style = "primary"
features = [
"Everything in Free, plus:",
"Institutional dashboard & analytics",
"Track research output across teams",
"Preserve institutional knowledge",
"Branded embed viewers",
"Priority support",
]
[[extra.pricing.tiers]]
name = "Industry"
price = "€10,000"
price_period = "/year"
description = "Companies, R&D teams, commercial organizations"
cta_text = "Contact Us"
cta_url = "#contact"
cta_style = "primary"
features = [
"Everything in Organizations, plus:",
"Access validated research",
"Commission targeted validations",
"Custom API integration",
"Dedicated account manager",
"Custom branding & deployment",
]
# ── Team ─────────────────────────────────────────────────────────────────────
[extra.team]
title = "Who We Are"
subtitle = "Building the infrastructure for FAIR scientific knowledge"
[[extra.team.members]]
name = "Viten Hub Team"
title = "Project Lead"
description = "Anne Fouilloux founded VitenHub AS and has 25 years of experience in research software engineering and Open Science practices. Expert in semantic technologies and FAIR data stewardship."
organization = "VitenHub AS"
url = "http://vitenhub.no/"
[[extra.team.members]]
name = "Knowledge Pixels Team"
title = "Nanopublication Infrastructure"
description = "Swiss startup specializing in nanopublication technology and decentralized scientific knowledge networks. Providing core infrastructure expertise and technical implementation."
organization = "Knowledge Pixels"
url = "https://knowledgepixels.com"
[[extra.team.members]]
name = "Prophet Town Team"
title = "Software Engineering"
description = "Vijay Prema is developing the Science Live Platform and the Zotero plugin."
organization = "Prophet Town"
url = "https://www.ptown.tech"
# ── Thank You Pages ─────────────────────────────────────────────────────────
[extra.thank_you_messages]
[extra.thank_you_messages.contact]
title = "Message Received!"
message = "Thank you for contacting us. We've received your message and will get back to you as soon as possible."
submessage = "We typically respond within 24 hours during business days."
icon = "fas fa-envelope"
[[extra.thank_you_messages.contact.next_steps]]
title = "Message Reviewed"
description = "Our team will review your message and determine the best person to help you."
[[extra.thank_you_messages.contact.next_steps]]
title = "Personal Response"
description = "You'll receive a personalized response from our team within 24 hours."
[[extra.thank_you_messages.contact.next_steps]]
title = "Follow-up Action"
description = "If needed, we'll schedule a call or provide additional resources to address your inquiry."
[extra.thank_you_messages.contact.secondary_action]
url = "/#team"
text = "Meet Our Team"
icon = "fas fa-users"
[extra.thank_you_messages.demo]
title = "Demo Request Submitted!"
message = "Thank you for requesting a demo. We're excited to show you how Science Live can transform your research workflow."
submessage = "Our team will contact you within 1 business day to schedule your personalized demo."
icon = "fas fa-presentation-screen"
[[extra.thank_you_messages.demo.next_steps]]
title = "Schedule Confirmation"
description = "We'll email you within 24 hours to confirm your demo time and send calendar invitation."
[[extra.thank_you_messages.demo.next_steps]]
title = "Personalized Demo"
description = "Your 30-minute demo will be tailored to your specific research needs and use cases."
[[extra.thank_you_messages.demo.next_steps]]
title = "Q&A Session"
description = "Ask questions about features, pricing, and how Science Live fits into your workflow."
[extra.thank_you_messages.demo.secondary_action]
url = "/#pricing"
text = "View Pricing Plans"
icon = "fas fa-tag"
# ── Community Feed ──────────────────────────────────────────────────────────
[extra.community_feed]
tag = "COMMUNITY"
title = "Latest from the community"
subtitle = "Recent nanopublications created by researchers using Science Live"
# ── Roadmap ─────────────────────────────────────────────────────────────────
[extra.roadmap]
tag = "ROADMAP"
title = "What's coming next"
subtitle = "We're building the infrastructure for open, structured scientific knowledge. Here's what's on the horizon."
[[extra.roadmap.items]]
title = "Collections"
description = "Group related nanopublications into curated, shareable collections."
icon = "layer-group"
[[extra.roadmap.items]]
title = "Feeds & Subscriptions"
description = "Follow researchers, topics, or template types and get notified of new publications."
icon = "rss"
[[extra.roadmap.items]]
title = "Community Verification"
description = "Trustworthiness ratings and peer endorsements for nanopublications."
icon = "certificate"
[[extra.roadmap.items]]
title = "Credit System"
description = "Rewards and recognition for publishers, reviewers, and active community members."
icon = "coins"
[[extra.roadmap.items]]
title = "Research Organizations"
description = "Attribute research output to institutions with dashboards and analytics."
icon = "university"
[[extra.roadmap.items]]
title = "Industry Bounties"
description = "Companies post requests and bounties on specific research topics or validations."
icon = "briefcase"
#[[extra.roadmap.items]]
#title = "Knowledge Graph Papers"
#description = "Generate structured papers from verified, interlinked nanopublications."
#icon = "wand-magic-sparkles"