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 Ben Smith to the speakers list #27

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
13 changes: 13 additions & 0 deletions lib/alchemy/template_helpers.ex
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,19 @@ defmodule Alchemy.TemplateHelpers do
""",
twitter_handle: "michalmuskala",
socials: []
},
%{
name: "Ben Smith",
picture: "public/speakers/bensmith.jpg",
tagline: "",
description: """
Ben has been building event-driven Elixir applications for the past few
years. His popular open source Commanded and EventStore libraries provide
a solid technical foundation allowing companies to focus on modelling
their business using domain-specific events.
""",
twitter_handle: "slashdotdash",
socials: []
}
]

Expand Down
Binary file added priv/site/public/speakers/bensmith.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion priv/site/speakers.slime
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
layout: _layout.slime
---

- require Integer

.Speakers
= include(@env, "_includes/speakers/hero.slime")
.Speakers
= for speaker <- speakers() do
= include(@env, "_includes/speakers/details.slime", speaker: speaker)

= include(@env, "_includes/footer.slime")
= include(@env, "_includes/footer.slime", alt: speakers() |> length() |> Integer.is_even())