Compare commits

..

4 Commits

Author SHA1 Message Date
Andreas Kurm
85704540e6 Modified border radius of buttons on card-footer
All checks were successful
continuous-integration/drone/push Build is passing
2020-02-10 12:53:18 +01:00
Andreas Kurm
a8332168d7 Added links.md 2020-02-10 12:51:35 +01:00
Andreas Kurm
08421e9da9 Added link shortcode 2020-02-10 12:51:23 +01:00
Andreas Kurm
dccbafa287 Renamed shortcodes 2020-02-10 12:50:56 +01:00
6 changed files with 84 additions and 6 deletions

View File

@ -6,7 +6,7 @@ draft: true
# Unterstützte Communities oder Communities unserer Mitglieder
{{< community_deck_start >}}
{{< deck_start >}}
{{< community
@ -37,8 +37,8 @@ draft: true
>}}
{{< community_deck_end >}}
{{< community_deck_start >}}
{{< deck_end >}}
{{< deck_start >}}
{{< community
@ -69,8 +69,8 @@ draft: true
>}}
{{< community_deck_end >}}
{{< community_deck_start >}}
{{< deck_end >}}
{{< deck_start >}}
{{< community
@ -83,4 +83,4 @@ draft: true
>}}
{{< community_deck_end >}}
{{< deck_end >}}

53
site/content/links.md Normal file
View File

@ -0,0 +1,53 @@
---
title: "Links"
date: 2020-02-10T12:12:34+01:00
draft: false
---
# Links
{{< deck_start >}}
{{< link
name="Firmware Downloader"
description="Das ist der zentrale Anlaufpunkte für das Downloaden der Firmware von den Communities in der Region."
link_caption="Zum Firmware-Downloader"
link="https://downloader.freifunk-rhein-sieg.net/"
>}}
{{< link
name="Freifunk.net"
description="Die Freifunk-Website vom Förderverein Freie Netzwerke e. V. aus Berlin."
link_caption="Zur Website"
link="https://freifunk.net/"
>}}
{{< link
name="Freifunk Rheinland.net"
description="Die Website vom Freifunk-Rheinland e. V. "
link_caption="Zur Website"
link="https://freifunk-rheinland.net/"
>}}
{{< deck_end >}}
{{< deck_start >}}
{{< link
name="Freifunk Wiki"
description="Das Freifunk Wiki "
link_caption="Zum Wiki"
link="https://wiki.freifunk.net/"
>}}
{{< link
name="Pico Peering Agreement"
description="Das Pico Peering Adreement nach dem sich die Freifunker richten."
link_caption="Zum PPA"
link="https://www.picopeer.net/PPA-de.shtml"
>}}
{{< deck_end >}}

View File

@ -0,0 +1,20 @@
<div class="card">
<div class="card-body">
<h5>{{ .Get "name" }}</h5>
<p>{{ .Get "description" }}</p>
</div>
<div class="card-footer p-0">
<div class="row m-0">
{{ if .Get "link" }}
<div class="col p-0">
<a class="btn btn-dark w-100" href="{{ .Get "link" }}" target="_blank">{{ .Get "link_caption" }}</a>
</div>
{{ end }}
</div>
</div>
</div>

View File

@ -48,6 +48,11 @@ footer{
background-color: hsl(42, 100%, 45%);
}
.card-footer .btn{
border-top-left-radius: 0;
border-top-right-radius: 0;
}
@media all and (max-width: 900px) {
.card-deck {
display:block!important;