-
Notifications
You must be signed in to change notification settings - Fork 72
Add keynoters. #1102
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
Merged
Merged
Add keynoters. #1102
Changes from 6 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
33feced
Add keynoters to homepage.
nikoshell d5bc2e0
Remove diacritics from file names.
nikoshell 3f4ef19
Update mdx file with diacritics.
nikoshell cbef1f7
Styling unification for homepage sections.
nikoshell 6182546
Fix missed letter in aliases and import name.
nikoshell 8e6d416
Add example taglines.
nikoshell d4af522
Add content: keynoters
clytaemnestra 12048ce
New button component.
nikoshell 7fc4cbb
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 027e037
Updates based on the comments.
nikoshell 971e60a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 1d654fa
Merge branch 'ep2025' into ep2025-keynoters
nikoshell 8616941
Update icons and keynoters section style.
nikoshell 3cd3c3b
Update keynoters style.
nikoshell 081fe45
Center header nav.
nikoshell 37438ad
Add card image alt text.
nikoshell 165c31e
5 keynoters.
nikoshell 7f88666
Merge branch 'ep2025' into ep2025-keynoters
nikoshell a8e1f7f
Replace icons in hero and nav.
nikoshell b5dd9fa
Temporary remove links to keynoters.
nikoshell 412f672
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
nikoshell marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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
nikoshell marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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 hidden or 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,9 @@ | ||
| --- | ||
| import PragueComponent from "@components/hero-section/prague.astro"; | ||
| import * as venue from "../../data/home/prague.mdx"; | ||
| --- | ||
| <div class="mt-2 px-6 pb-40 overflow-visible"> | ||
| <PragueComponent title={venue.frontmatter.title}> | ||
| <venue.Content /> | ||
| </PragueComponent> | ||
| </div> |
nikoshell marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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 @@ | ||
| --- | ||
|
|
||
| import { CardContainer } from "@components/card/card-container"; | ||
| import { Title } from "@components/typography/title"; | ||
| import DeadlineCard from "@components/deadline-card.astro"; | ||
| import Headline from "@ui/Headline.astro" | ||
| import { getCollection } from "astro:content"; | ||
|
|
||
| let deadlines = await getCollection("deadlines"); | ||
| deadlines = deadlines | ||
| .sort((a, b) => a.slug.localeCompare(b.slug)) | ||
| .reverse() | ||
| .slice(0, 3); | ||
|
|
||
| --- | ||
| <section class="prose-xl m-0 p-0"> | ||
| <Headline id="updates" title="Updates" /> | ||
| <CardContainer> | ||
| {deadlines.map((deadline) => <DeadlineCard id={deadline.slug} />)} | ||
| </CardContainer> | ||
| </section> |
This file contains hidden or 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 hidden or 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 @@ | ||
| --- | ||
| const { as = "h2", id, title, href} = Astro.props; | ||
| const Tag = as; | ||
| const Title = title; | ||
| const isAnchor = !!id; | ||
| const isLink = !!href; | ||
| --- | ||
|
|
||
| <Tag id={isAnchor ? id : undefined} class={`m-5 py-2 text-center font-bold text-6xl`}> | ||
| {isAnchor && ( | ||
| <a href={`#${id}`} aria-label={`Jump to ${id}`}> | ||
| {Title} | ||
| </a> | ||
| )} | ||
| {isLink && <a aria-label="Read more about {Title}" href={href} class="hover:underline">{Title}</a> } | ||
| </Tag> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,6 @@ | ||
| --- | ||
| name: Anna Přistoupilová | ||
| image: ./anna.jpg | ||
| slug: anna-pristoupilova | ||
| tagline: Primary colours | ||
| --- |
This file contains hidden or 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,5 @@ | ||
| --- | ||
| name: Armin Ronacher | ||
| image: ./armin.jpg | ||
| slug: armin-ronacher | ||
| --- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,6 @@ | ||
| --- | ||
| name: Carol Willing | ||
| image: ./carol.jpg | ||
| slug: carol-willing | ||
| tagline: A writer codes? Eeek! | ||
| --- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,6 @@ | ||
| --- | ||
| name: Łukasz Langa | ||
| image: ./lukasz.jpg | ||
| slug: lukasz-langa | ||
| tagline: Lorem Lorem Lorem | ||
| --- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,5 @@ | ||
| --- | ||
| name: Mai Giménez | ||
| image: ./mai.jpg | ||
| slug: mai-gimenez | ||
| --- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,5 @@ | ||
| --- | ||
| name: Tereza Iofciu | ||
| image: ./tereza.jpg | ||
| slug: tereza-iofciu | ||
| --- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.