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 landingPage layout + meet up page #3

Merged
merged 5 commits into from Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 28 additions & 0 deletions content/meetup-with-team.md
@@ -0,0 +1,28 @@
+++
title = 'Meet With Team'
date = 2024-03-03T13:05:17-06:00
draft = true
type = "page"
layout = "landingPage"
description = ""
+++

We would love to meet up with you, have a drink (coffee, tea, boba, wine, beer, etc.), and talk about your experiences using different tools and ways that we can be a resource for you. We have the following activities and events coming up, and would also be happy to meet up somewhere close to where you are.

## Events

- March 14-15, 2024: **Monki Gras 2024**, London, England
- March 14-17, 2024: **SCaLE 21x / DevOpsDays LA**, Los Angeles, CA
- March 19-22, 2024: **KubeCon Europe 2024**, Paris, France
- Happy Hour (LINK to event page)
- Meet up anytime (LINK to Calendly)
- April 9-12, 2024: **DevNexus 2024**, Atlanta, GA
- April 15-19, 2024: **Open Source Summit North America 2024**, Seattle, WA
- April 22-24, 2024: **Infobip Shift Miami**, Miami, FL
- April 29-30, 2024: **DevOps Denver Meetup**, Denver, CO

## Chat with us locally

- London, England (LINK to Calendly)
- Kansas City Metro Area (LINK to Calendly)

20 changes: 20 additions & 0 deletions layouts/page/landingPage.html
@@ -0,0 +1,20 @@
{{ define "main" }}

{{ partial "navigation.html" . }}

<section class="section">
<div class="container">
<div class="row">
<div class="col-lg-8 offset-lg-2 text-center">
<h1>{{ .Title }}</h1>
</div>
<div class="col-lg-8 offset-lg-2">
<div class="post-single-content">
{{ .Content }}
</div>
</div>
</div>
</div>
</section>

{{ end }}