Skip to content

Commit ce28623

Browse files
authored
Merge pull request #7 from RosettaCommons/documentation
Setting up folders to store documentation and the built HTML pages.
2 parents 03c4653 + 5ed9812 commit ce28623

File tree

2 files changed

+36
-7
lines changed

2 files changed

+36
-7
lines changed

doc/source/conf.py

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
# -- Project information -----------------------------------------------------
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

9-
project = 'rf_diffusion'
10-
copyright = '2024, Baker Lab'
11-
author = 'Baker Lab'
9+
project = 'RFdiffusion2'
10+
copyright = '2025, Institute for Protein Design, University of Washington'
11+
author = 'Woody Ahern, Jason Yim, Doug Tischer, Saman Salike, Seth M. Woodbury, Donghyo Kim, Indrek Kalvet, Yakov Kipnis, Brian Coventry, Han Raut Altae-Tran, Magnus Bauer, Regina Barzilay, Tommi S. Jaakkola, Rohith Krishna, David Baker'
1212

1313
# -- General configuration ---------------------------------------------------
1414
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
@@ -17,12 +17,14 @@
1717
'sphinx.ext.todo',
1818
'sphinx.ext.viewcode',
1919
'sphinx.ext.autodoc',
20-
'sphinx_rtd_theme',
2120
'sphinx.ext.napoleon',
2221
'sphinx_mdinclude',
22+
#'myst_parser', # to use markdown instead of ReST'
2323

2424
]
2525

26+
#myst_enable_extensions = ["colon_fence"] # see https://mystmd.org/guide/syntax-overview for more information
27+
2628
suppress_warnings = [
2729
'app.add_node',
2830
'app.add_directive',
@@ -66,5 +68,32 @@
6668
# -- Options for HTML output -------------------------------------------------
6769
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
6870

69-
html_theme = 'sphinx_rtd_theme'
71+
html_theme = 'furo'
7072
html_static_path = ['_static']
73+
74+
75+
html_theme_options = {
76+
"sidebar_hide_name":False,
77+
"top_of_page_buttons": ["edit"],
78+
""
79+
#"announcement": "<em>THIS DOCUMENTATION IS CURRENTLY UNDER CONSTRUCTION</em>",
80+
"light_css_variables": {
81+
"color-brand-primary": "#F68A33", # Rosetta Teal
82+
"color-brand-content": "#37939B", # Rosetta Orange
83+
"color-admonition-background": "#FB35D6", # Rosetta light orange
84+
"font-stack": "Open Sans, sans-serif",
85+
"font-stack--headings": "Open Sans, sans-serif",
86+
"color-background-hover": "#DCE8E8ff",
87+
"color-announcement-background" : "#F68A33dd",
88+
"color-announcement-text": "#070707",
89+
"color-brand-visited": "#37939B",
90+
},
91+
"dark_css_variables": {
92+
"color-brand-primary": "#37939B", # Rosetta teal
93+
"color-brand-content": "#F68A33", # Rosetta orange
94+
"color-admonition-background": "#FB35D6", # Rosetta light orange
95+
"font-stack": "Open Sans, sans-serif",
96+
"font-stack--headings": "Open Sans, sans-serif",
97+
"color-brand-visited": "#37939B",
98+
}
99+
}

doc/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
6-
Welcome to rf_diffusion's documentation!
7-
========================================
6+
Welcome to the Official Documentation for RFdiffusion2!
7+
=======================================================
88

99
.. toctree::
1010
:maxdepth: 2

0 commit comments

Comments
 (0)