Skip to content

Commit 900d5fa

Browse files
committed
adding templating and a hub page
1 parent 3ac540f commit 900d5fa

File tree

5 files changed

+44
-1
lines changed

5 files changed

+44
-1
lines changed

_data/nav.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ head:
55
- Documentation
66
- title: NBViewer
77
url: https://nbviewer.jupyter.org
8+
- JupyterHub
89
- Widgets
910
- title: Blog
1011
url: https://blog.jupyter.org
11-

_includes/head.html

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<link rel="stylesheet" href="{{ "/css/logo-nav.css" | prepend: site.baseurl }}?{{site.time | date: '%s%N'}}">
1717
<link rel="stylesheet" href="{{ "/css/cardlist.css" | prepend: site.baseurl }}">
1818
<link rel="stylesheet" href="{{ "/css/github-buttons.css" | prepend: site.baseurl }}">
19+
<link rel="stylesheet" href="{{ "/css/markdown_page.css" | prepend: site.baseurl }}">
1920
<link rel="icon" type="image/png" href="favicon.ico" />
2021
<link href="{{site.baseurl}}/assets/apple-touch-icon.png" rel="apple-touch-icon" />
2122
<link href="{{site.baseurl}}/assets/apple-touch-icon-76x76.png" rel="apple-touch-icon" sizes="76x76" />

_layouts/page_md.html

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
layout: default
3+
---
4+
<div class="post">
5+
<header class="post-header header header-grey">
6+
<h2>{{ page.title }}</h2>
7+
<p>{{ page.tagline }}</p>
8+
</header>
9+
10+
<article class="post-content">
11+
<div class="section-white top-section-border">
12+
<div class="page_content container">
13+
{{ content }}
14+
</div>
15+
</div>
16+
</article>
17+
18+
</div>

css/markdown_page.css

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
div.page_content img {
2+
height:200px;
3+
width: 60%;
4+
margin: 0px 20%;
5+
}

hub.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: page_md
3+
title: JupyterHub
4+
tagline: Provide tens, hundreds, or thousands of users access to Jupyter environments
5+
navbar_jupytercon: true
6+
cfp: true
7+
permalink: /hub
8+
---
9+
10+
![](assets/hublogo.svg)
11+
12+
## Provide remote access to Jupyter environments
13+
14+
JupyterHub allows you to share a Jupyter environment with people at your local
15+
organization, or with anyone around the world.
16+
17+
* [JupyterHub GitHub repository](https://github.com/jupyterhub/jupyterhub)
18+
* [Deploy JupyterHub on Kubernetes](https://z2jh.jupyter.org)
19+
* [Deploy JupyterHub on a single VM](https://tljh.jupyter.org)

0 commit comments

Comments
 (0)