Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
124 changes: 124 additions & 0 deletions config/_default/hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
# Hugo configuration for preCICE website
baseURL = "https://precice.org/"
locale = "en-us"
title = "preCICE - The Coupling Library"
enableGitInfo = true

[params]
repository = "precice/precice.github.io"
output = "web"
topnav_title = "preCICE"
site_title = "preCICE - The Coupling Library"
company_name = "preCICE"
github_editme_path = "https://github.com/precice/precice.github.io/edit/master/"
google_analytics = ""
description = "preCICE is an open-source coupling library and ecosystem for general partitioned multi-physics and multi-scale simulations, including surface and volume coupling."
sidebars = ["home_sidebar", "docs_sidebar", "tutorial_sidebar", "community_sidebar"]
precice_version = "3.4.1"
calculix_version = "2.20"
calculix_adapter_version = "2.20.1"
matrix_url = "https://matrix.to/#/#precice_lobby:gitter.im?web-instance[element.io]=app.gitter.im"
precice_v1_citations = 451
precice_v1_citations_url = "https://scholar.google.com/scholar?cites=5053469347483527186&as_sdt=2005&sciodt=0,5&hl=en"
precice_v2_citations = 233
precice_v2_citations_url = "https://scholar.google.com/scholar?oi=bibs&hl=en&cites=17974677460269868025,12004404035922881061"

[params.algolia]
application_id = "LIT6P0EW26"
index_name = "jekyll"
search_only_api_key = "760ed6be3e165d08b4a798ac4aa82fe4"
nodes_to_index = "p,code,table"
max_record_size = 20000

[params.mermaid]
src = "https://cdn.jsdelivr.net/npm/mermaid@11.12.3/dist/mermaid.min.js"

[params.github_editme_paths]
"content" = "https://github.com/precice/precice.github.io/edit/master/"
"imported/aste" = "https://github.com/precice/aste/edit/develop/"
"imported/calculix-adapter" = "https://github.com/precice/calculix-adapter/edit/develop/"
"imported/code_aster-adapter" = "https://github.com/precice/code_aster-adapter/edit/develop/"
"imported/dealii-adapter" = "https://github.com/precice/dealii-adapter/edit/develop/"
"imported/dumux-adapter" = "https://github.com/precice/dumux-adapter/edit/develop/"
"imported/dune-adapter" = "https://github.com/precice/dune-adapter/edit/main/"
"imported/fenics-adapter" = "https://github.com/precice/fenics-adapter/edit/develop/"
"imported/fenicsx-adapter" = "https://github.com/precice/fenicsx-adapter/edit/develop/"
"imported/fmi-runner" = "https://github.com/precice/fmi-runner/edit/main/"
"imported/micro-manager" = "https://github.com/precice/micro-manager/edit/develop/"
"imported/openfoam-adapter" = "https://github.com/precice/openfoam-adapter/edit/develop/"
"imported/preeco-orga" = "https://github.com/precice/preeco-orga/edit/main/"
"imported/su2-adapter" = "https://github.com/precice/su2-adapter/edit/develop/"
"imported/tutorials" = "https://github.com/precice/tutorials/edit/develop/"

[security]
allowContent = [".*"]

[params.jekyll_defaults."content"]
layout = "page"
comments = false
search = true
sidebar = "home_sidebar"
topnav = "topnav"

[params.jekyll_defaults."content/docs"]
layout = "page"
comments = false
search = true
sidebar = "docs_sidebar"
topnav = "topnav"
toc = true

[params.jekyll_defaults."content/tutorials"]
layout = "page"
comments = false
search = true
sidebar = "tutorial_sidebar"
topnav = "topnav"
toc = true

[params.jekyll_defaults."content/community"]
layout = "page"
comments = false
search = true
sidebar = "community_sidebar"
topnav = "topnav"
toc = true

[params.jekyll_defaults."imported/docs"]
layout = "page"
comments = false
search = true
sidebar = "docs_sidebar"
topnav = "topnav"
toc = true

[params.jekyll_defaults."imported/tutorials"]
layout = "page"
comments = false
search = true
sidebar = "tutorial_sidebar"
topnav = "topnav"
toc = true

[params.jekyll_defaults."imported/preeco-orga"]
layout = "page"
comments = false
search = true
sidebar = "community_sidebar"
topnav = "topnav"
toc = true

[markup.goldmark.renderer]
unsafe = true

[markup.highlight]
noClasses = false

[markup.tableOfContents]
startLevel = 2
endLevel = 4
ordered = false

[outputs]
section = ["HTML"]

Loading
Loading