Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
89 changes: 89 additions & 0 deletions config/_default/hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# Hugo configuration for preCICE website
baseURL = "https://precice.org/"
locale = "en-us"
title = "preCICE - The Coupling Library"
enableGitInfo = true
enableRobotsTXT = true

[module]
# Use the canonical Go module archive so its checksum matches go.sum.
proxy = "https://proxy.golang.org,direct"

[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 = ""
Comment thread
MakisH marked this conversation as resolved.
Outdated
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"
Comment thread
MakisH marked this conversation as resolved.
Outdated
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"
Comment thread
MakisH marked this conversation as resolved.
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]
Comment thread
MakisH marked this conversation as resolved.
Outdated
"content" = "https://github.com/precice/precice.github.io/edit/master/"
"github.com/precice/aste" = "https://github.com/precice/aste/edit/develop/"
"github.com/precice/calculix-adapter" = "https://github.com/precice/calculix-adapter/edit/develop/"
"github.com/precice/code_aster-adapter" = "https://github.com/precice/code_aster-adapter/edit/develop/"
"github.com/precice/dealii-adapter" = "https://github.com/precice/dealii-adapter/edit/develop/"
"github.com/precice/dumux-adapter" = "https://github.com/precice/dumux-adapter/edit/develop/"
"github.com/precice/dune-adapter" = "https://github.com/precice/dune-adapter/edit/main/"
"github.com/precice/fenics-adapter" = "https://github.com/precice/fenics-adapter/edit/develop/"
"github.com/precice/fenicsx-adapter" = "https://github.com/precice/fenicsx-adapter/edit/develop/"
"github.com/precice/fmi-runner" = "https://github.com/precice/fmi-runner/edit/main/"
"github.com/precice/micro-manager" = "https://github.com/precice/micro-manager/edit/develop/"
"github.com/precice/openfoam-adapter" = "https://github.com/precice/openfoam-adapter/edit/develop/"
"github.com/precice/preeco-orga" = "https://github.com/precice/preeco-orga/edit/main/"
"github.com/precice/su2-adapter" = "https://github.com/precice/su2-adapter/edit/develop/"
"github.com/precice/tutorials" = "https://github.com/precice/tutorials/edit/master/"

[security]
allowContent = [".*"]

[markup.goldmark.renderer]
unsafe = true

[markup.highlight]
noClasses = false

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

[outputs]
home = ["HTML", "RSS", "Algolia", "SitemapIndex"]
section = ["HTML"]

[outputFormats.RSS]
baseName = "feed"

[outputFormats.Algolia]
mediaType = "application/json"
baseName = "algolia"
isPlainText = true
notAlternative = true

[outputFormats.SitemapIndex]
mediaType = "application/xml"
baseName = "sitemap_index"
isPlainText = true
notAlternative = true
Loading
Loading