diff --git a/content/english/meetups/index.md b/content/english/meetups/index.md deleted file mode 100644 index 4dd9955..0000000 --- a/content/english/meetups/index.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "Hey, I am John Doe!" -meta_title: "About" -description: "this is meta description" -image: "/images/avatar.png" -draft: false -layout: under_construction ---- - -Lorem ipsum dolor sit amet consectetur adipisicing elit. Corporis illum nesciunt commodi vel nisi ut alias excepturi ipsum, totam, labore tempora, odit ex iste tempore sed. Fugit voluptatibus perspiciatis assumenda nulla ad nihil, omnis vel, doloremque sit quam autem optio maiores, illum eius facilis et quo consectetur provident dolor similique! Enim voluptatem dicta expedita veritatis repellat dolorum impedit, provident quasi at. diff --git a/content/english/meetups/seattle.md b/content/english/meetups/seattle.md new file mode 100644 index 0000000..2574305 --- /dev/null +++ b/content/english/meetups/seattle.md @@ -0,0 +1,25 @@ ++++ +title="Seattle's Mailing List" +date="2024-11-03T12:00:00-08:00" +description="Receive Handmade meetup invites from the Emerald City!" +thumbnail="/images/meetups/distantworlds_space.jpg" + +[[hosts]] +name="Allen Webster" +bio="Founder of [Mr. 4th Lab](https://mr4th.com). Hosts the classic monthly meetups" +image="/images/people/allen_square.webp" + +[[hosts]] +name="Phil Homan" +bio="Staff [member](https://handmadecities.com/about). Hosts the coworking sessions (bi-weekly)" +image="/images/people/phil_homan.jpg" + +[[hosts]] +name="Abner Coimbre" +bio="Staff [member](https://handmadecities.com/about). Hosts the third place (weekly)" +image="/images/people/abner_2022.png" ++++ + +#### Optional Discord Server + +The mailing list is how you get official invites, but you may join the Discord for extra updates or to chat with the meetup group. diff --git a/layouts/meetups/single.html b/layouts/meetups/single.html new file mode 100644 index 0000000..9abbb9b --- /dev/null +++ b/layouts/meetups/single.html @@ -0,0 +1,72 @@ +{{ define "main" }} +
+
+
+

{{ .Params.Title }}

+
+ +
+
+
+ +
+ +
+ {{ .Params.Description }} +
+ +
+ +
+
+ +
+
+
+
+ {{ .Content }} + Discord +
+ + {{ $hasGoodHost := false }} + {{ range .Params.Hosts }} + {{ if or .bio .image }} + {{ $hasGoodHost = true }} + {{ end }} + {{ end }} + {{ if $hasGoodHost }} +
+

Meetup host{{ if (gt (len .Params.Hosts) 1) }}s{{ end }}

+
+ {{ range .Params.Hosts }} +
+
+
{{ .name }}
+ {{ if or .bio .image }} +
+ {{ if .image }} + {{ $imageurl := resources.Get .image }} + {{ if $imageurl}} +
+ {{ end }} + {{ end }} + {{ if .bio }} + {{ .bio | markdownify }} + {{ end }} +
+ {{ end }} +
+
+ {{ end }} +
+
+ {{ end }} +
+
+
+
+{{ end }} diff --git a/static/images/meetups/distantworlds_space.jpg b/static/images/meetups/distantworlds_space.jpg new file mode 100644 index 0000000..59ee618 Binary files /dev/null and b/static/images/meetups/distantworlds_space.jpg differ diff --git a/static/images/meetups/envelope.png b/static/images/meetups/envelope.png new file mode 100644 index 0000000..86e49ce Binary files /dev/null and b/static/images/meetups/envelope.png differ