Skip to content
Merged
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
10 changes: 10 additions & 0 deletions docs/_static/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,13 @@ div.deprecated p:first-child::before { color: #C3514D; }
font-size: 0.7rem;
margin-left: 0.5rem;
}

/* Site-wide announcement banner */
.admonition.site-banner {
background: #E2F7F3;
border-left: none;
}

.admonition.site-banner .admonition-title {
background: #0CAE8E;
}
8 changes: 8 additions & 0 deletions docs/_templates/layout.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{% extends "!layout.html" %}

{% block document %}
<div class="admonition site-banner">
<p class="admonition-title">Nextflow documentation is migrating</p>
<p>Nextflow documentation is being migrated to <a href="https://docs.seqera.io/nextflow/">docs.seqera.io/nextflow</a>. This site will remain available throughout the migration.</p>
</div>
{{ super() }}
{% endblock %}

{% block sidebartitle %}
{{ super() }}
{%- set version_selected = "stable" -%}
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ The following settings are available:
: The AWS Batch [Execution Role](https://docs.aws.amazon.com/batch/latest/userguide/execution-IAM-role.html) ARN that needs to be used to execute the Batch Job. It is mandatory when using AWS Fargate.

`aws.batch.forceGlacierTransfer`
: :::{versionadded 26.04.0}
: :::{versionadded} 26.04.0
:::
: When `true`, add the `--force-glacier-transfer` flag to AWS CLI S3 download commands (default: `false`).
: This option is needed when staging directories that have been restored from [S3 Glacier](https://aws.amazon.com/s3/storage-classes/glacier/). It does not restore objects from Glacier.
Expand Down
Loading