Skip to content
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

Add voila to website #357

Merged
merged 4 commits into from
Dec 26, 2019
Merged
Show file tree
Hide file tree
Changes from 2 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
Binary file added assets/voilapreview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 8 additions & 11 deletions css/logo-nav.css
Original file line number Diff line number Diff line change
Expand Up @@ -470,20 +470,17 @@ body {
}

.greydout {
-moz-opacity: .065;
-webkit-opacity: 0.065;
opacity: 0.65;
-webkit-transition: all .5s ease;
-moz-transition: all .5s ease;
-ms-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
-webkit-transition: all .05s ease;
-moz-transition: all .05s ease;
-ms-transition: all .05s ease;
-o-transition: all .05s ease;
transition: all .05s ease;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.5s was really too slow.

}

.greydout:hover {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1;
-webkit-opacity: 0.65;
-moz-opacity: 0.65;
opacity: 0.65;
}

/* JupyterHub section on front page */
Expand Down
27 changes: 25 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,31 @@ <h4>Code meets data</h4>
</div>
</div>
</section>
<section id="current-use">
<section id="voila">
<div class="section-white">
<div class="voila-preview">
<div class="container">
<div class="row">
<div class="col-md-6">
<img class="img-responsive" src="assets/voilapreview.png" id="portal" alt="examples of Voilà dashboards"/>
</div>
<div class="col-md-6 nb-highlight-text">
<h3>Voilà turns Jupyter notebooks into standalone web applications.</h3>
SylvainCorlay marked this conversation as resolved.
Show resolved Hide resolved
<h4 class="nb-desc">
Voilà can convert a Jupyter Notebook into an interactive dashboard that allows you to share your work with others. It is secure and customizable, giving you control over what your readers experience.
SylvainCorlay marked this conversation as resolved.
Show resolved Hide resolved
</h4>
<div class="button-container">
<a class="orange-button" href="try">Try it in your browser</a>
<a class="orange-button install-button" href="install.html">Install Voilà</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="current-use">
<div class="section-grey">
<div class="container">
<div class="row">
<h3 class="section-header">Currently in use at</h3>
Expand Down Expand Up @@ -188,7 +211,7 @@ <h3 class="section-header">Currently in use at</h3>
</div>
</section>
<section id="architecture">
<div class="section-grey">
<div class="section-white">
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternating grey and white. This requires making the logos a bit darker, hence the CSS change.

<div class="container">
<div class="architecturedescription">
<img src="assets/architectureicon2.svg" class="section-icon" alt="icon to represent jupyter architecture">
Expand Down
24 changes: 24 additions & 0 deletions install.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ While Jupyter runs code in many programming languages, Python is a requirement
(Python 3.3 or greater, or Python 2.7) for installing the JupyterLab or the classic Jupyter Notebook.

### Installing Jupyter Notebook using Anaconda

We **strongly recommend** installing Python and Jupyter using the [Anaconda Distribution](https://www.anaconda.com/downloads),
which includes Python, the Jupyter Notebook, and other commonly used packages for scientific computing and data science.

Expand All @@ -53,6 +54,7 @@ jupyter notebook
See [Running the Notebook](https://jupyter.readthedocs.io/en/latest/running.html#running) for more details.

### Installing Jupyter Notebook with pip

As an existing or experienced Python user, you may wish to install Jupyter using Python’s package manager, pip, instead of Anaconda.

If you have Python 3 installed (which is recommended):
Expand All @@ -77,3 +79,25 @@ jupyter notebook
```

See [Running the Notebook](https://jupyter.readthedocs.io/en/latest/running.html#running) for more details.

## Getting started with Voilà

### Installation

Voilà can be installed using `conda` or `pip`. For more detailed instructions, consult the [installation guide](https://voila.readthedocs.io/en/stable/install.html).

### conda

If you use `conda`, you can install it with:

```shell
conda install -c conda-forge voila
```

### pip

If you use `pip`, you can install it with:

```shell
pip install voila
```