Skip to content

Commit 702f52a

Browse files
committed
Add banner for JupyterCon 2025
1 parent 2d4e57a commit 702f52a

File tree

5 files changed

+69
-15
lines changed

5 files changed

+69
-15
lines changed

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22

33
This is the source to [Jupyter.org](https://jupyter.org/).
44

5-
## Build the site locally
6-
7-
The site is built with Jekyll, see [the Jekyll website](https://jekyllrb.com/) for how to customize the build process.
8-
9-
There are a few ways to build the site locally, see the sections below.
105

116
## Where the site is hosted
127

@@ -23,6 +18,12 @@ Here's an image of this box on a GitHub PR page:
2318

2419
![Netlify Preview Button](.github/images/netlify-preview.png)
2520

21+
## Build the site locally
22+
23+
See the sections below for a few ways to build the site locally.
24+
25+
The site is built with Jekyll, see [the Jekyll website](https://jekyllrb.com/) for how to customize the build process.
26+
2627
### Build the site automatically with `nox`
2728

2829
The easiest way to build the site locally is by using the [`nox` command line tool](https://nox.thea.codes/). This tool makes it easy to automate commands in a repository, and we have included a `build` command to quickly install the dependencies and build the site.
@@ -46,7 +47,6 @@ To build and preview the site locally, follow these steps:
4647
$ nox -s build-live
4748
```
4849

49-
5050
This will install the needed dependencies in a virtual environment using [the `conda` package manager](https://docs.conda.io/en/latest/).
5151

5252
**When the build is finished, go to `localhost:4000`**. When Jekyll finishes building your site, it will open a port on your computer and serve the website there so that you may preview it.

Diff for: assets/JupyterCon-Logo-white.svg

+1
Loading

Diff for: assets/css/main.scss

+45-9
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,6 @@
9191
margin-bottom: 27px;
9292
}
9393

94-
.con-button {
95-
float: right;
96-
clear: both;
97-
margin-right: 28px !important;
98-
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
99-
}
100-
101-
102-
10394
.jupytercon-section {
10495
background: url('../jupytercon-planet.jpg');
10596
background-size: 100%;
@@ -129,3 +120,48 @@
129120
color: black;
130121
font-weight: 400;
131122
}
123+
124+
/* Convention banner */
125+
126+
.con-jumbotron {
127+
margin: 0 !important;
128+
padding: 0 !important;
129+
}
130+
131+
.con-container {
132+
background: rgba(0, 0, 0, 0.5) url("../header-banner.jpg");
133+
background-size: cover;
134+
background-repeat: no-repeat;
135+
background-blend-mode: darken;
136+
background-position: bottom center;
137+
text-align: center;
138+
}
139+
140+
.con-content {
141+
max-width: 1200px;
142+
margin: 0 auto;
143+
float: none !important;
144+
padding: 40px;
145+
}
146+
147+
.con-title {
148+
margin-left: auto;
149+
margin-right: auto;
150+
clear:both;
151+
width: 100%;
152+
max-width: 500px;
153+
}
154+
155+
.con-button button {
156+
background-color: #f37726;
157+
color: white;
158+
margin: 0 .5em;
159+
padding: 1em;
160+
border-radius: 5px;
161+
border: none;
162+
font-size: 1em;
163+
font-weight: 600;
164+
cursor: pointer;
165+
}
166+
167+

Diff for: assets/header-banner.jpg

111 KB
Loading

Diff for: index.html

+17
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,23 @@
246246
---
247247

248248
<header>
249+
<div class="jumbotron con-jumbotron">
250+
<div class="row">
251+
<div class="col-md-12" style='padding:0'>
252+
<div class="con-container img-responsive">
253+
<div class="col-lg-8 con-content md-offset-2">
254+
<a href="https://events.linuxfoundation.org/jupytercon/"><img class="con-title img-responsive" src="assets/JupyterCon-Logo-white.svg" alt="The JupyterCon Logo" /></a>
255+
<div class="con-date">November 04-05, 2025</div>
256+
<div class="con-program">
257+
<p>San Diego, California</p>
258+
</div>
259+
<a class="con-button" href="https://events.linuxfoundation.org/jupytercon/"><button>Conference Website</button></a>
260+
<a class="con-button" href="https://events.linuxfoundation.org/jupytercon/program/cfp/"><button>Call for Proposals</button></a>
261+
</div>
262+
</div>
263+
</div>
264+
</div>
265+
</div>
249266
<div class="jumbotron">
250267
<div class="col-md-12">
251268
{% for img in page.jumbotron.images %}

0 commit comments

Comments
 (0)