forked from flyteorg/flyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: cosmicBboy <[email protected]>
- Loading branch information
1 parent
0b5ef91
commit 3958aa9
Showing
7 changed files
with
141 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
furo | ||
readthedocs-sphinx-search | ||
sphinx | ||
sphinx-prompt | ||
sphinx-material | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
h1, h2, h3, h4, h5, h6 { | ||
font-weight: bold; | ||
} | ||
|
||
.sidebar-logo { | ||
max-width: 30%; | ||
} | ||
|
||
|
||
.sidebar-tree .reference.external:after { | ||
content: none; | ||
} | ||
|
||
div.sphx-glr-download a { | ||
color: #4300c9; | ||
background-color: rgb(241, 241, 241); | ||
background-image: none; | ||
border: 1px solid rgb(202, 202, 202); | ||
} | ||
|
||
div.sphx-glr-download a:hover { | ||
background-color: rgb(230, 230, 230); | ||
box-shadow: none; | ||
} | ||
|
||
div.sphx-glr-thumbcontainer a.headerlink { | ||
display: none; | ||
} | ||
|
||
div.sphx-glr-thumbcontainer:hover { | ||
border-color: white; | ||
box-shadow: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<a class="sidebar-brand{% if logo %} centered{% endif %}" href="{{ home_page }}"> | ||
{% block brand_content %} | ||
{%- if logo %} | ||
<div class="sidebar-logo-container"> | ||
<img class="sidebar-logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/> | ||
</div> | ||
{%- endif %} | ||
{%- if theme_light_logo and theme_dark_logo %} | ||
<div class="sidebar-logo-container"> | ||
<img class="sidebar-logo only-light" src="{{ pathto('_static/' + theme_light_logo, 1) }}" alt="Light Logo"/> | ||
<img class="sidebar-logo only-dark" src="{{ pathto('_static/' + theme_dark_logo, 1) }}" alt="Dark Logo"/> | ||
</div> | ||
{%- endif %} | ||
{% if not theme_sidebar_hide_name %} | ||
<span class="sidebar-brand-text">{{ docstitle }}</span> | ||
{%- endif %} | ||
{% endblock brand_content %} | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
############# | ||
API Reference | ||
############# | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: API Reference | ||
:name: apitoc | ||
|
||
Flytekit Python <https://flytekit.readthedocs.io> | ||
Flytekit Java <https://github.com/spotify/flytekit-java> | ||
FlyteIDL <https://flyteidl.readthedocs.io> | ||
Flytectl <https://flytectl.readthedocs.io> | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Component Reference (Code docs) | ||
:name: componentreftoc | ||
|
||
FlytePropeller <https://pkg.go.dev/mod/github.com/flyteorg/flytepropeller> | ||
FlyteAdmin <https://pkg.go.dev/mod/github.com/flyteorg/flyteadmin> | ||
FlytePlugins <https://pkg.go.dev/mod/github.com/flyteorg/flyteplugins> | ||
DataCatalog <https://pkg.go.dev/mod/github.com/flyteorg/datacatalog> | ||
|