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

feat: makes requested Berlin 2025 changes #131

Merged
merged 1 commit into from
Jan 15, 2025
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
2 changes: 1 addition & 1 deletion berlin-2025/data/en/homepage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ tickets:
event:
enable: true
title: "Join us in Berlin for a gathering of the InnerSource community!"
content: "The InnerSource Gathering is an event that explores the secrets to achieving collaboration across organizational boundaries in software development. InnerSource means fostering an open source-like culture within a company and realizing highly transparent collaboration. As companies grow, walls can form between departments and products, making collaboration difficult. By adopting InnerSource to break down barriers between departments and achieve co-creation, organizations can generate synergy and prevent reinventing the wheel. InnerSource Gatherings introduces the latest trends and practical examples of InnerSource and provides a place for participants to deepen their interactions. The key to unlocking the future of your organization is here. Please join us! Registration for the Gathering will open soon or you can get your gathering pass as an add-on to a ticket for FOSS Backstage, the two day conference on all things community, management and compliance in Free and Open Source Software here"
content: "The InnerSource Gathering is an event that explores the secrets to achieving collaboration across organizational boundaries in software development. InnerSource means fostering an open source-like culture within a company and realizing highly transparent collaboration. As companies grow, walls can form between departments and products, making collaboration difficult. By adopting InnerSource to break down barriers between departments and achieve co-creation, organizations can generate synergy and prevent reinventing the wheel. InnerSource Gatherings introduces the latest trends and practical examples of InnerSource and provides a place for participants to deepen their interactions. The key to unlocking the future of your organization is here. Please join us! Registration for the Gathering will open soon or you can get your gathering pass as an add-on to a ticket for FOSS Backstage, the two day conference on all things community, management and compliance in Free and Open Source Software <a href='https://25.foss-backstage.de/tickets/'>here</a>"
link: "https://25.foss-backstage.de/tickets/"

############################# Feature ###########################
Expand Down
45 changes: 22 additions & 23 deletions themes/gathering-theme/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,29 +158,6 @@ <h2>Upcoming Events</h2>
{{ end }}
{{ end }}

<!-- feature -->
{{ if $data.homepage.feature.enable }}
{{ with $data.homepage.feature }}
<section id="section-feature">
<div class="container mt-8">
<div class="row">
{{ range .feature_item }}
<div class="col-lg-4 col-md-6">
<div class="feature-box">
<i class="{{ .icon }}"></i>
<h4 class="mt-3 mb-3">{{ .name | markdownify }}</h4>
<div class="divider"></div>
<p>{{ .content | markdownify }}</p>
</div>
</div>
{{ end }}
</div>
</div>
</section>
{{ end }}
{{ end }}
<!-- /feature -->

<!-- schedule -->
{{ if $data.homepage.schedule.enable }}
{{ partial "schedule.html" . }}
Expand Down Expand Up @@ -274,6 +251,28 @@ <h6 class="text-color mb-3">{{ .date }}</h6>
<!-- venue -->


<!-- feature -->
{{ if $data.homepage.feature.enable }}
{{ with $data.homepage.feature }}
<section id="section-feature">
<div class="container mt-8">
<div class="row">
{{ range .feature_item }}
<div class="col-lg-4 col-md-6">
<div class="feature-box">
<i class="{{ .icon }}"></i>
<h4 class="mt-3 mb-3">{{ .name | markdownify }}</h4>
<div class="divider"></div>
<p>{{ .content | markdownify }}</p>
</div>
</div>
{{ end }}
</div>
</div>
</section>
{{ end }}
{{ end }}
<!-- /feature -->

<!-- Past events -->
<br>
Expand Down