Skip to content

Commit 2d12b86

Browse files
authored
Merge pull request #98 from InnerSourceCommons/new
update event page
2 parents 7a80ca7 + 483a76c commit 2d12b86

File tree

10 files changed

+136
-0
lines changed

10 files changed

+136
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "Reports"
3+
date: 2019-09-10T13:51:25+06:00
4+
draft: false
5+
description: "InnerSource Gathering Reports"
6+
type: "blog"
7+
bg_image: "https://gatherings.innersourcecommons.org/tokyo-2024/report/photo-collage-event.jpeg"
8+
---
9+
10+
<br>
11+
<br>
12+
<br>
13+
14+
# Gathering Reports
15+
16+
<br>
17+
18+
In this section, you will find reports from past InnerSource Gatherings.
19+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "InnerSource Gathering Berlin 2024"
3+
date: 2019-12-31T13:51:25+06:00
4+
summary: "THIS IS A SUMMARY YOU HAVE TO FILL>"
5+
draft: false
6+
type: "blog"
7+
---
8+
9+
Dublin Event was succcessful. We had 100 attendees and 10 speakers.....
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "InnerSource Gathering Dublin 2024"
3+
date: 2019-12-31T13:51:25+06:00
4+
summary: "THIS IS A SUMMARY YOU HAVE TO FILL>"
5+
draft: false
6+
type: "blog"
7+
---
8+
9+
Dublin Event was succcessful. We had 100 attendees and 10 speakers.....

landing-page/content/en/reports/images/.keep

Whitespace-only changes.

landing-page/content/en/reports/images/dublin-2024.png

Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "InnerSource Gathering Shenzhen 2024"
3+
date: 2019-12-31T13:51:25+06:00
4+
summary: "THIS IS A SUMMARY YOU HAVE TO FILL>"
5+
draft: false
6+
type: "blog"
7+
---
8+
9+
Dublin Event was succcessful. We had 100 attendees and 10 speakers.....
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "InnerSource Gathering Tokyo 2024"
3+
url: "/reports/tokyo-2024"
4+
type: redirects
5+
summary: "The InnerSource Gathering Tokyo 2024 concluded successfully. Over 70 people gathered at the venue, making it a wonderful event showcasing the growth and enthusiasm of the InnerSource community in Japan."
6+
redirect: "https://gatherings.innersourcecommons.org/tokyo-2024/report-isgt2024"
7+
---
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "InnerSource Gathering Vienna 2024"
3+
date: 2019-12-31T13:51:25+06:00
4+
summary: "THIS IS A SUMMARY YOU HAVE TO FILL>"
5+
draft: false
6+
type: "blog"
7+
---
8+
9+
Dublin Event was succcessful. We had 100 attendees and 10 speakers.....
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{{ define "main" }}
2+
3+
{{ $data := index .Site.Data .Site.Language.Lang }}
4+
5+
<div>
6+
<div class="container">
7+
<br>
8+
{{.Content}}
9+
<br>
10+
{{ range .Data.Pages }}
11+
<h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
12+
<p>{{.Summary}}</p>
13+
{{ end }}
14+
</div>
15+
</div>
16+
<div style="height:400px"></div>
17+
18+
{{ end }}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{{ define "main" }}
2+
3+
{{ $data := index .Site.Data .Site.Language.Lang }}
4+
5+
<section class="speaker-single section">
6+
<div class="container">
7+
<div class="row">
8+
<div class="">
9+
<div class="speaker-single-wrap">
10+
<div class="speaker-header mb-4">
11+
<h2>{{ .Title }}</h2>
12+
<span class="text-color">{{ .Params.Designation }}</span>
13+
</div>
14+
<div class="content">{{ .Content }}</div>
15+
<h5 class="mb-3 mt-5">{{ i18n "follow_me"}}</h5>
16+
<ul class="list-inline social-single">
17+
{{ range .Params.Social }}
18+
<li class="list-inline-item"><a href="{{ .link | safeURL }}"><i class="{{ .icon }}"></i></a></li>
19+
{{ end }}
20+
</ul>
21+
22+
<!--
23+
<h5 class="mt-4">{{ i18n "email" }}</h5>
24+
<p>{{ .Params.Email }}</p>
25+
-->
26+
</div>
27+
</div>
28+
</div>
29+
</div>
30+
</section>
31+
32+
<!--
33+
<section class="section bg-light">
34+
<div class="container">
35+
<div class="row">
36+
<div class="col-lg-8">
37+
<div class="mb-5">
38+
<h2>{{ i18n "professional_skills" }}</h2>
39+
</div>
40+
</div>
41+
</div>
42+
<div class="row">
43+
{{ range .Params.skill }}
44+
<div class="col-lg-4 col-md-6 mb-5">
45+
<div class="skill-item">
46+
<i class="{{ .icon }}"></i>
47+
<h4 class="mb-3">{{ .title | markdownify }}</h4>
48+
<p>{{ .content | markdownify }}</p>
49+
</div>
50+
</div>
51+
{{ end }}
52+
</div>
53+
</div>
54+
</section>
55+
-->
56+
{{ end }}

0 commit comments

Comments
 (0)