baseURL = "https://stands.fosdem.org"
languageCode = "en-us"
title = "FOSDEM 2021 Stands"
-theme = "fosdem"
\ No newline at end of file
+theme = "fosdem"
+
+[taxonomies]
+theme = "themes"
\ No newline at end of file
website: https://www.fosdem.org
logo: stands/fosdem/cogweel.png
description: |
- <p>FOSDEM is the yearly European free and open source developers meeting. Founded in 2000 as OSEM, it is currently celebrating its 21st edition, welcoming
+ FOSDEM is the yearly European free and open source developers meeting. Founded in 2000 as OSEM, it is currently celebrating its 21st edition, welcoming
over 8000 developers to the ULB campus in Brussels. With hundreds of speakers and projects talking about their newest ideas and developments, it is the
place to get in touch with projects and developers, keep up to date with latest developments and listen to the great minds in the field. The event is
- totally free and is supported by donations, sponsorships and hundreds of volunteers.</p>
+ totally free and is supported by donations, sponsorships and hundreds of volunteers.
showcase: |
<p>Come to our stand to meet the team behind FOSDEM, get up to date with the latest developments (will there be a FOSDEM in 2021? does G. really have a
{{ define "main" }}
+<div class="container">
+ <div class="row">
+ <div class="col">
+ <ul>
+ {{ range .Pages }}
+ <a href="{{ .Permalink }}">{{ .Params.title }}</a>
+ {{ end }}
+ </ul>
+ </div>
+ </div>
+</div>
{{ end }}
\ No newline at end of file
<div class="container">
{{ range .Pages }}
<div class="row">
- <div class="col-2">
- <img src="{{ .Params.logo | relURL }}" class="img-thumbnail" alt="{{ .Params.title }} logo" />
- <a href="{{ .Permalink }}">{{ .Params.title }}</a>
- {{ .Params.theme }}
- {{ .Params.website }}
- {{ .Params.description }}
- </div>
- <div class="col-10">
- <p>
- {{ .Params.showcase }}
- </p>
- <p>
- {{ .Params.new_this_year }}
- </p>
+ <div class="col">
+ <div class="card mb-3 border-0">
+ <div class="row no-gutters">
+ <div class="col-md-2">
+ <img src="{{ .Params.logo | relURL }}" class="card-img border-0" alt="{{ .Params.title }} logo" />
+ </div>
+ <div class="col-md-10">
+ <div class="card-body">
+ <h5 class="card-title"><a href="{{ .Permalink }}">{{ .Params.title }}</a></h5>
+ <p class="card-text">{{ .Params.description }}</p>
+ <p class="card-text"><small class="text-muted"><a href="/themes/{{ .Params.theme }}">{{ .Params.theme }}</a></small></p>
+ </div>
+ </div>
+ </div>
+ </div>
</div>
</div>
{{ end }}