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 LinkedIn and Dapr Meteor photos #128

Merged
merged 1 commit into from
Nov 22, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"extended": true,
"version": "latest"
}
}
},

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand All @@ -24,5 +24,5 @@
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
"remoteUser": "root"
}
9 changes: 9 additions & 0 deletions content/community/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@ community:
label : "Follow Dapr on Bluesky"
link : "https://bsky.app/profile/daprdev.bsky.social"

- logo : "images/community/linkedin-logo.png"
alt: "Dapr LinkedIn"
title: "Follow us on LinkedIn"
summary: "LinkedIn is used to share important news such as new releases, case studies, and Dapr related events. If you're sharing Dapr news, mention the Dapr page or use the #dapr hashtag and we'll highlight your message during community calls."
cta :
enable : true
label : "Follow Dapr on LinkedIn"
link : "https://www.linkedin.com/company/daprdev"

- logo : "images/community/x-logo-black.png"
alt: "Dapr X (Twitter)"
title: "Follow us on X"
Expand Down
3 changes: 3 additions & 0 deletions content/community/program/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ program:

- title: "Requirements ✅"
summary: "Dapr Meteors are selected based on their active involvement and impact within the Dapr community. This can include contributions such as writing blog posts, creating videos, speaking at conferences and meetups, helping people on Dapr Discord, or contributing documentation or code to the Dapr OSS project itself."
image: "images/community/meteors/meteors-neon.jpg"
alt: "Dapr Meteors with Dapr Neon Sign"

- title: "Benefits 🤩"
summary: "Being recognized as a Dapr Meteor comes with several benefits:

Expand Down
Binary file added static/images/community/linkedin-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/community/meteors/meteors-neon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion themes/bigspring/assets/scss/_custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
max-height: 30em;
}

.hero-image, .sponsor-image {
.hero-image, .sponsor-image, .community-hero-image {
display: flex;
justify-content: center;
align-items: center;
Expand All @@ -64,6 +64,10 @@
width: 60%;
}

.community-hero-image > img {
width: 90%;
}

.sponsor-image a {
text-align: center;
}
Expand Down
6 changes: 5 additions & 1 deletion themes/bigspring/layouts/community/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ <h3 class="text-center">{{ .title }}</h3>
<!-- Community Program -->
{{ with .Params }}
{{ if .program }}

<section class="bg-light">
<div class="width-80 vertical-align-center">
<div class="hero-image">
Expand All @@ -69,6 +68,11 @@ <h3>{{ .title }}</h3>
</div>
{{ end }}
</div>
{{ if .image }}
<div class="community-hero-image">
<img src="{{ .image | absURL }}" alt="{{ .alt | markdownify }}">
</div>
{{ end }}
{{ end }}
</div>
<div class="sponsor-image">
Expand Down