Skip to content

Add metadata to each page #23 #256

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
------------------------------------------------------------------------------------------

- Updated OpenSWATH KNIME tutorial documentation

- SEO Optimized
------------------------------------------------------------------------------------------
---- OpenMS 3.3.0 (released: 1/2024) ----
------------------------------------------------------------------------------------------
Expand Down
19 changes: 19 additions & 0 deletions docs/_templates/layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
{% block extrahead %}
<meta name="description" content="Official OpenMS documentation for proteomics and mass spectrometry data analysis.">
<meta name="keywords" content="OpenMS, mass spectrometry, proteomics, bioinformatics, data analysis">
<meta name="author" content="OpenMS Development Team">
<meta name="robots" content="index, follow">
<meta property="OpenMS 3.3.0 documentation" content="OpenMS Documentation">
<meta property="og:description" content="Learn about OpenMS, an open-source software for mass spectrometry data analysis.">
<meta property="og:url" content="https://openms.readthedocs.io">
<meta property="og:type" content="website">

{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>
6 changes: 6 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@
"light_logo": "FinalLogo_Nov2024_Versions-01.svg",
"dark_logo": "FinalLogo_Nov2024_Versions-02.svg",
}
html_meta = {
"description": "Official documentation for OpenMS, an open-source software for mass spectrometry data analysis in proteomics and metabolomics.",
"keywords": "OpenMS, mass spectrometry, proteomics, bioinformatics, data analysis, KNIME",
"author": "OpenMS Development Team"
}

pygments_style = 'sas'

pygments_dark_style = 'rrt'
Expand Down