-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add help button pointing to docs (#83)
- Loading branch information
Showing
1 changed file
with
30 additions
and
4 deletions.
There are no files selected for viewing
34 changes: 30 additions & 4 deletions
34
conda-store-server/conda_store_server/server/templates/navigation.html
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,4 +1,30 @@ | ||
<nav class="navbar navbar-dark bg-dark mb-2"> | ||
<a class="navbar-brand" href="/">Conda-Store</a> | ||
<a class="btn btn-outline-success my-2 my-sm-0" href="/create/" role="button">Create Environment</a> | ||
</nav> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark mb-2" role="navigation"> | ||
<div class="container-fluid"> | ||
<div class="navbar-header"> | ||
<a class="navbar-brand" href="/">Conda-Store</a> | ||
</div> | ||
|
||
<!-- <div class="navbar-nav mr-auto"> | ||
<ul class="nav navbar-nav"> | ||
<a class="nav-item nav-link" href="#">Left-aligned item example</a> | ||
</ul> | ||
</div> --> | ||
|
||
<div class="nav navbar-right"> | ||
<ul class="nav navbar-nav"> | ||
<li> | ||
<a class="btn btn-outline-success my-2 my-sm-0 mr-2" href="/create/" role="button"> | ||
Create Environment | ||
</a> | ||
</li> | ||
<li> | ||
<a class="btn btn-outline-secondary my-2 my-sm-0" href="https://conda-store.readthedocs.io/" | ||
target="_blank" role="button"> | ||
Help | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
</nav> |