Skip to content

Commit c187e62

Browse files
feat: adds links to page and makes event page main summit page
1 parent 33c1aa5 commit c187e62

4 files changed

Lines changed: 39 additions & 31 deletions

File tree

config/_default/menus.en.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ main:
2424
weight: 2
2525
identifier: events
2626
- name: Summit 2024
27-
URL: events/summit-2024
27+
URL: events/isc-2024
2828
parent: events
2929
weight: 4
3030
- name: Local Gatherings
@@ -104,7 +104,7 @@ footer_middle:
104104
weight: 1
105105
post: bold
106106
- name: Summit 2024
107-
URL: events/summit-2024
107+
URL: events/isc-2024
108108
weight: 2
109109
- name: Local Gatherings
110110
URL: https://gatherings.innersourcecommons.org/

content/en/events/isc-2024.md

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,29 @@ title: 'InnerSource Summit 2024'
33
image: "/images/events/summit-2024.png"
44
date: 2024-11-20
55
publishDate: 2024-07-10
6-
6+
showImageInSinglePage: false
7+
bigHeading: true
78
---
9+
<nav class="navbar navbar-expand-lg navbar-light bg-transparent mb-0">
10+
<div class="collapse navbar-collapse text-center mb-0" id="navigation">
11+
<ul class="navbar navbar-nav mx-auto mb-0">
12+
<li class="nav-item">
13+
<a class="nav-link" href="https://www.eventbrite.com/e/innersource-summit-2024-tickets-943448669367">Register</a>
14+
</li>
15+
<li class="nav-item">
16+
<a class="nav-link" href="#keynote-speakers">Speakers</a>
17+
</li>
18+
<li class="nav-item">
19+
<a class="nav-link" href="#sponsorship">Sponsor</a>
20+
</li>
21+
<li class="nav-item">
22+
<a class="nav-link" href="mailto:summit_team@innersourcecommons.org">Contact Us</a>
23+
</li>
24+
</ul>
25+
</div>
26+
</nav>
27+
28+
<img src="/images/events/summit-2024.png"></img>
829

930
### Registrations are Now Open
1031
#### 20th & 21st November 2024 - online
@@ -28,9 +49,13 @@ Once you have ordered your tickets, full details of how to access the event will
2849

2950
### Sponsorship
3051

31-
If you want to reach the global InnerSource audience while supporting the work of the InnerSource Commons Foundation, we have also added an option for you to sponsor the Summit on the ticket page. For $2,000 you will be listed as an event sponsor in all the materials related to the event. We will thank you at every opportunity, and your logo and brand will be forever associated with this fabulous event through the videos that will be shared with our growing community for years to come.
32-
33-
In case you need any more convincing, we'll also send you a goody bag with a selection of our popular InnerSource Commons T-shirts and stickers to share with your employees.
52+
Does your organization want to reach the global InnerSource audience and support the work of the InnerSource Commons Foundation?
53+
If so, we have also added an option for you to sponsor the Summit. With our $2,000 sponsorship package, sponsors will be:
54+
<ul>
55+
<li>Be listed as an event sponsor on our Summit webpage, all summit branding and recordings of our popular talks.</li>
56+
<li>Be named and thanked at key points throughout the Summit.</li>
57+
<li>Receive a goody bag with a selection of our popular InnerSource Commons t-shirts and stickers to share with your employees.</li>
58+
</ul>
3459

3560
Formal invoices and receipts can also be provided for sponsors.
3661

content/en/events/summit-2024.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

layouts/events/single.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,15 @@
66
<div class="row">
77
<div class="col-lg-10 mx-auto">
88
{{ if .Params.image }}
9-
<img src="{{ .Params.image | absURL }}" alt="{{ .Title }}" class="img-fluid w-100 rounded mb-4">
9+
{{ if ne .Params.showImageInSinglePage false }}
10+
<img src="{{ .Params.image | absURL }}" alt="{{ .Title }}" class="img-fluid w-100 rounded mb-4">
11+
{{ end }}
12+
{{ end }}
13+
{{ if .Params.bigHeading }}
14+
<h1 class="display-3 text-center">{{ .Title }}</h1>
15+
{{ else }}
16+
<h2 class="mb-4">{{ .Title }}</h2>
1017
{{ end }}
11-
<h2 class="mb-4">{{ .Title }}</h2>
1218
<div class="content">{{.Content}}</div>
1319
</div>
1420
</div>

0 commit comments

Comments
 (0)