Stands part mostly done
authorPieter De Praetere <pieter.de.praetere@helptux.be>
Sun, 27 Dec 2020 14:42:50 +0000 (15:42 +0100)
committerPieter De Praetere <pieter.de.praetere@helptux.be>
Sun, 27 Dec 2020 14:42:50 +0000 (15:42 +0100)
config.toml
content/stands/fosdem/_index.md
themes/fosdem/layouts/_default/list.html
themes/fosdem/layouts/stands/list.html

index 480c27289300f84309ba08f6de8d002f55166a1d..a6cec1ee531931862a305d68320bb7a4f759b619 100644 (file)
@@ -1,4 +1,7 @@
 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
index 5ff8d80aed68037f7175ae46296c38149b1c0e28..26c02479a4b49802d4180da77611b4251a1c30cb 100644 (file)
@@ -4,10 +4,10 @@ theme: Community advocacy
 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
index f319bf97cc4e09b23872d20408c6450ffcc19aed..61ec7a0c7a62effca1d71d155608a8768b757806 100644 (file)
@@ -1,2 +1,13 @@
 {{ 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
index c9b8d0019f006700ce3369f95876e1ce86aebdf3..54d941af870cfb633f8b823cfcff0880fe7d3fb3 100644 (file)
@@ -2,20 +2,21 @@
 <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 }}