Skip to content
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 CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ Hugo static site for the InnerSource Commons Foundation.
## When modifying pages

- **Preview locally before opening a PR**: `hugo server --buildDrafts --buildFuture`, then check every page you touched at `http://localhost:1313/...`. If `hugo` isn't on `PATH`, it's typically installed via `winget install Hugo.Hugo.Extended`.
- **Attach a screenshot of every changed page to the PR description**, under a "Screenshots" section — a markdown or CSS diff doesn't show how the page actually renders, and layout/spacing/image-crop issues only show up visually.
- **Attach a full-page screenshot of every changed page to the PR description**, under a "Screenshots" section — capture the whole page top to bottom, not just the changed area, so each change is reviewed in the context of how it sits within the overall page. A markdown or CSS diff doesn't show how the page actually renders, and layout/spacing/image-crop issues only show up visually.
- Run a full `hugo` build (not just the dev server) at least once before opening the PR — the dev server's incremental rebuild can miss errors a clean build catches.
25 changes: 25 additions & 0 deletions content/en/events/isc-2026.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,31 @@ Scott Hanselman is Vice President and Member of Technical Staff at Microsoft/Git
<br />
<br />

### Our Sponsors
<br />

<p>The InnerSource Summit is made possible by the generosity of its sponsors - organizations that believe in open collaboration and invest in the community that practices it. We're grateful to have them with us for Summit 2026.</p>
<br />

<div class="container text-center">
<h4>Silver Sponsors</h4>
</div>

<div class="container summit-sponsors">
<div class="row justify-content-center">
{{< company name="Airbus" image="/images/logos/airbus.png" url="https://www.airbus.com" >}}{{< /company >}}
</div>
</div>

<style>
.summit-sponsors .feature-card { background-color: transparent !important; }
</style>

<!-- Bronze Sponsors: when the first Bronze sponsor joins, add a centered "Bronze Sponsors" h4 heading followed by a row of company logo cards, mirroring the Silver block above. -->

<br />
<br />

**Talk to us now on info@innersourcecommons.org to find out how you can be part of this year’s summit or fill out the following forms:
<br />
<!-- [Expression of Interest form](https://docs.google.com/forms/d/e/1FAIpQLSfPV4TURwC9czP5Sn5AfXY4E7QGRYHdjZgSKExrL7b5pjGtFg/viewform) -->
Expand Down
7 changes: 7 additions & 0 deletions layouts/shortcodes/company.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
<div class="col-md-4 col-sm-6 mb-4">
<div class="feature-card bg-light text-center mb-0">
{{ if .Get "url" }}
<a href="{{ .Get "url" }}" target="_blank" rel="noopener" class="h-150 d-flex align-items-center justify-content-center mb-0 company-logo-box">
<img src="{{ .Get "image" }}" alt="{{ .Get "name" }}" title="{{ .Get "name" }}" class="mh-150">
<div>{{ .Get "name" }}</div>
</a>
{{ else }}
<div class="h-150 d-flex align-items-center justify-content-center mb-0 company-logo-box">
<img src="{{ .Get "image" }}" alt="{{ .Get "name" }}" title="{{ .Get "name" }}" class="mh-150">
<div>{{ .Get "name" }}</div>
</div>
{{ end }}
<div class="cite-icons mt-1 align-items-center justify-content-center mb-0">
{{ if (not (eq (trim .Inner "\n ") "")) }}<a href="#" class="cite-link" data-link="{{ urlize (.Get "name")}}-cite"><i class="ti-align-right mb-0 mr-1"></i></a>{{ end }}
{{ if .Get "video" }}<a href="{{ .Get "video" }}" target="_blank"><i class="ti-video-camera mb-0 mr-1 ml-1"></i></a>{{ end }}
Expand Down
Loading