-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use conda-sphinx-theme (plus redirect fixes) (#376)
* switching to new them plus reorganizing the site a little bit :) * updating other files * adding news file * Update news/370-use-conda-sphinx-theme Co-authored-by: jaimergp <jaimergp@users.noreply.github.com> * removing custom css * Update docs/environment.yml Co-authored-by: jaimergp <jaimergp@users.noreply.github.com> * Update docs/_templates/navbar_center.html Co-authored-by: Jannis Leidel <jannis@leidel.info> * Apply suggestions from code review Co-authored-by: Jannis Leidel <jannis@leidel.info> * fixing the redirects * adding small css fix --------- Co-authored-by: jaimergp <jaimergp@users.noreply.github.com> Co-authored-by: Jannis Leidel <jannis@leidel.info>
- Loading branch information
1 parent
06bcd31
commit a62d3c0
Showing
15 changed files
with
156 additions
and
67 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
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,15 +1,7 @@ | ||
html { | ||
--pst-font-size-base: 14px; | ||
} | ||
|
||
html[data-theme="light"] { | ||
--pst-color-primary: #025C02; | ||
--pst-color-secondary: #3EB049; | ||
--pst-color-link-hover: #3EB049; | ||
} | ||
|
||
html[data-theme="dark"] { | ||
--pst-color-primary: #3EB049; | ||
--pst-color-secondary: #025C02; | ||
--pst-color-link-hover: #025C02; | ||
/** | ||
* This rule is here to avoid the scrollbar appearing when this | ||
* is not hosted on ReadTheDocs | ||
*/ | ||
#rtd-footer-container { | ||
display: 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,14 @@ | ||
<ul id="navbar-main-elements" class="navbar-nav"> | ||
<li class="nav-item current active"> | ||
<a class="reference internal nav-link" href="{{ pathto("index") }}">{{ project }}</a> | ||
</li> | ||
<li class="nav-item {% if project == "conda" %}current active{% endif %}"> | ||
<a class="reference internal nav-link" href="https://docs.conda.io/projects/conda/">Conda</a> | ||
</li> | ||
<li class="nav-item {% if project == "conda-build" %}current active{% endif %}"> | ||
<a class="reference internal nav-link" href="https://docs.conda.io/projects/conda-build/">Conda-build</a> | ||
</li> | ||
<li class="nav-item {% if project == "miniconda" %}current active{% endif %}"> | ||
<a class="reference internal nav-link" href="https://docs.conda.io/projects/miniconda/">Miniconda</a> | ||
</li> | ||
</ul> |
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,14 @@ | ||
# Developer Guide | ||
|
||
To get started with developing conda-libmamba-solver, please check out | ||
the following pages: | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
setup | ||
workflows | ||
implementation | ||
future-work | ||
code-of-conduct | ||
changelog | ||
``` |
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 |
---|---|---|
@@ -1,44 +1,50 @@ | ||
--- | ||
sd_hide_title: true | ||
--- | ||
# conda-libmamba-solver | ||
|
||
Welcome to the conda-libmamba-solver documentation! The conda-libmamba-solver | ||
was written to make conda faster and is now the default solver. On this site, | ||
you will find information about how to configure and use this solver. | ||
|
||
## Learn | ||
|
||
::::{grid} 2 | ||
:::{grid-item-card} User guide | ||
Start here if you want a faster conda: | ||
^^^ | ||
```{toctree} | ||
:maxdepth: 1 | ||
getting-started | ||
subcommands | ||
configuration | ||
libmamba-vs-classic | ||
performance | ||
faq | ||
more-resources | ||
``` | ||
+++ | ||
Found a bug? [File an issue here](https://github.com/conda/conda-libmamba-solver/issues/new/choose) | ||
|
||
:::{grid-item-card} Getting started | ||
:link: user-guide/index | ||
:link-type: doc | ||
New to conda-libmamba-solver? Start here to learn the essentials | ||
::: | ||
|
||
:::{grid-item-card} Developer guide | ||
:::{grid-item-card} Configuration | ||
:link: user-guide/configuration | ||
:link-type: doc | ||
Learn about all available configuration options | ||
|
||
If you want to contribute: | ||
^^^ | ||
:::: | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
dev/setup | ||
dev/workflows | ||
dev/implementation | ||
dev/future-work | ||
dev/code-of-conduct | ||
dev/changelog | ||
``` | ||
+++ | ||
[Code repository](https://github.com/conda/conda-libmamba-solver), [Project board](https://github.com/orgs/conda/projects/15) | ||
## Development | ||
|
||
::::{grid} 2 | ||
|
||
:::{grid-item-card} Development environment | ||
:link: dev/setup | ||
:link-type: doc | ||
Learn how to set up your development environment | ||
::: | ||
|
||
:::{grid-item-card} Changelog | ||
:link: dev/changelog | ||
:link-type: doc | ||
Recent changes and udpates to the project | ||
:::: | ||
|
||
|
||
```{seealso} | ||
Found a bug? [File an issue here](https://github.com/conda/conda-libmamba-solver/issues/new/choose) | ||
``` | ||
|
||
```{toctree} | ||
:hidden: | ||
user-guide/index | ||
dev/index | ||
``` |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,20 @@ | ||
### Enhancements | ||
|
||
* <news item> | ||
|
||
### Bug fixes | ||
|
||
* <news item> | ||
|
||
### Deprecations | ||
|
||
* <news item> | ||
|
||
### Docs | ||
|
||
* Use new conda-sphinx-theme for documentation site. (#367 via #370) | ||
* Reorganize the layout of the documentation site. (#370) | ||
|
||
### Other | ||
|
||
* <news item> |