-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
84 additions
and
11 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
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,16 @@ | ||
--- | ||
name: Firstname Lastname | ||
hidden: false | ||
photo: photo.jpg | ||
|
||
# Mastodon and Website accept a URL. Other networks accept a handle. | ||
social: | ||
bluesky: | ||
github: | ||
instagram: | ||
mastodon: | ||
twitter: | ||
website: | ||
--- | ||
|
||
Presenter's biography here. |
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 @@ | ||
# Presenters | ||
|
||
Presenters can be seen on the following pages: | ||
|
||
- `/schedule/` | ||
- `/{talk,tutorial}/<slug>` | ||
|
||
See `src/_includes/presenters-grid.html` for some a listing of presenters. | ||
|
||
Presenters can be hidden by setting `hidden: true` in the front matter, though this is not advised when the schedule is active. | ||
|
||
## Adding a new presenter | ||
|
||
1. Copy `_PRESENTER.md.example` to a new file and name it `first-last.md` (e.g. `jane-doe.md`). | ||
2. Fill in the details. You can remove any social networks that are unusued, leave them blank, or `null`. | ||
3. Add the presenter's photo to the `src/_content/presenters` directory. The photo should be square (or at least portrait-shaped) and at least 600x600 pixels, in JPG or WebP format. The filename should be the same as the organizer's MD file, but with the extension `.jpg` or `.webp` (e.g. `jane-doe.jpg`). Note that presenters and organizers do not share the same photo. | ||
|
||
## Deleting an presenter | ||
|
||
Remove the presenters's MD file and their photo from the `src/_content/presenters` directory. |
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,21 @@ | ||
# Sponsors | ||
|
||
Sponsors can be seen at `/sponsors/` and `/`. Sponsors usually appear in lists. | ||
|
||
Sponsors can be hidden by setting `hidden: true` in the front matter. | ||
|
||
Sponsors are usually returned in their order, as specified in their front matter. You can find the sponsorship level ordering in `src/_data/site.json`. | ||
|
||
## Adding a new post | ||
|
||
1. Copy `_SPONSOR.md.example` to a new file and name it `sponsor-name.md` (e.g. `lincoln-loop.md`). | ||
2. Fill in the sponsor metadata. There are a few things to keep in mind: | ||
* `level` should be one of the levels defined in `src/_data/site.json`. Casing matters, watch for typos. | ||
* `date` should be the date the sponsorship was added to the site, in the format `YYYY-MM-DD`. | ||
* `hiring_url` is optional. If provided, it will be denoted on the `/sponsors/` page. | ||
* `logo` should be the filename of the sponsor's logo, stored in `src/_content/sponsors/`. The filename should match the sponsor's MD file. Specify the orientation (`portrait` or `landscape`) to aid in rendering. SVG is preferred, but WebP and PNG are also acceptable. Be sure the logo does not have extra whitespace. | ||
3. Add Sponsor content/description in Markdown format after the front matter. | ||
|
||
## Deleting an sponsor | ||
|
||
Remove the sponsor's MD file and any related logo from the `src/_content/sponsors` directory.s |
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 @@ | ||
--- | ||
level: Level | ||
name: "Company Name" | ||
date: YYYY-MM-DD | ||
logo: | ||
filename: company-name.svg | ||
orientation: landscape | ||
hiring_url: false | ||
url: | ||
target: 'https://url.com/' | ||
label: companyname.com | ||
--- | ||
|
||
Company description in Markdown here. |