Skip to content

Commit

Permalink
fix broken links and some share icons and test mastodon page
Browse files Browse the repository at this point in the history
  • Loading branch information
justb4 committed Jun 3, 2024
1 parent 08a3da6 commit c294b73
Show file tree
Hide file tree
Showing 7 changed files with 145 additions and 68 deletions.
27 changes: 14 additions & 13 deletions content/0_community/bestuur/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,25 @@
title: Bestuur
author: nieneb
type: page
date: 2022-08-03T06:52:35+00:00
date: 2024-06-03T06:52:35+00:00
---
### Samenstelling Bestuur

Op dit moment (2.aug.2023) bestaat het bestuur van de stichting OSGeo.nl uit:
Op dit moment (2 aug 2023) bestaat het bestuur van de stichting OSGeo.nl uit:

* Voorzitter: [Niene Boeijen](https://www.linkedin.com/in/niene-boeijen-24a8a429) (Miss Maps)
* Secretaris: [Erik Meerburg](https://www.linkedin.com/in/erikmeerburg/) (Minister van Feest)
* Penningmeester: [Paulo van Breugel](https://www.linkedin.com/in/paulo-van-breugel/) (Mister Money)
* Marketing en communicatie: [Lars van Tol](https://www.linkedin.com/in/lars-van-tol-91a99510a/) (Chef Regelneef)
* Algemeen bestuurslid: [Just van den Broecke](https://www.linkedin.com/in/justb4/) (Duwbak)

* Algemeen bestuurslid: [Just van den Broecke][17] (duwbak)
* Marketing en communicatie: Lars van Tol (Chef regelneef)
* Voorzitter: Niene Boeijen (Miss Maps)
* Penningmeester: [Paulo van Breugel][18] (mister money)
* Secretaris: Erik Meerburg (Minister van Feest)

Eerdere bestuursleden waren:

Eerdere bestuursleden waren
o.a. [Marc Vloemans][20] – communicatie (tot 1 juli 2017),
 [Gert-Jan van der Weijden][21] – voorzitter (tot 1 juli 2017),
[Barend Köbben][19] – penningmeester (tot 1 jan 2022).
en [Steven Ottens][22]. Jasper Roest – communicatie (tot 14 maart 2019).
* Marc Vloemans - communicatie (tot 1 juli 2017),
* Gert-Jan van der Weijden - voorzitter (tot 1 juli 2017),
* Barend Köbben - penningmeester (tot 1 jan 2022).
* Steven Ottens - communicatie
* Jasper Roest - communicatie (tot 14 maart 2019).

Verslagen van de bestuursvergaderingen [staan op de Wiki][5].
Verslagen van de bestuursvergaderingen [staan op de Wiki](https://wiki.osgeo.org/wiki/Nederlands).
10 changes: 10 additions & 0 deletions content/0_community/mastodon/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: 'Het Laatste Nieuws'
author: Just van den Broecke
type: page
date: 2024-06-03T19:47:39+00:00
---

## Laatste Nieuws van OSGeo.nl

{{< mastodon "fosstodon.org" "osgeonl" 112553777381594010 10 >}}
2 changes: 1 addition & 1 deletion content/home/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Welkom bij OSGeo.NL
author: osgeonl
type: page
date: 2023-05-15T17:52:45+00:00
date: 2023-06-03T10:52:45+00:00
---

![](/photos/2023/groeps.jpg)
Expand Down
1 change: 0 additions & 1 deletion content/posts/2024-03-15-test-post.md

This file was deleted.

128 changes: 75 additions & 53 deletions layouts/partials/icons.html

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions layouts/partials/share.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{{- $s := T "share_on" }}
<div class="post_share">
{{ $s }}:
<!-- <a href="https://twitter.com/intent/tweet?text={{ .Title }}&url={{ .Permalink }}&tw_p=tweetbutton" class="twitter" title="{{ $s }} Twitter" target="_blank" rel="nofollow">-->
<!-- {{ partial "sprite" (dict "icon" "twitter") }}-->
<!-- </a>-->
<!-- <a href="https://www.facebook.com/sharer.php?u={{ .Permalink }}&t={{ .Title }}" class="facebook" title="{{ $s }} Facebook" target="_blank" rel="nofollow">-->
<!-- {{ partial "sprite" (dict "icon" "facebook") }}-->
<!-- </a>-->
<a href="#linkedinshare" id = "linkedinshare" class="linkedin" title="{{ $s }} LinkedIn" rel="nofollow">
{{ partial "sprite" (dict "icon" "linkedin") }}
</a>
<a href="{{ .Permalink }}" title="Copy Link" class="link link_yank">
{{ partial "sprite" (dict "icon" "copy") }}
</a>
</div>

28 changes: 28 additions & 0 deletions layouts/shortcodes/mastodon.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!-- get mastodon id as curl https://mapstodon.space/api/v1/accounts/lookup?acct=justb4 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@idotj/mastodon-embed-timeline@latest/dist/mastodon-timeline.min.css" integrity="sha256-1UGgxsonaMCfOEnVOL89aMKSo3GEAmaRP0ISbsWa6lU=" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/@idotj/mastodon-embed-timeline@latest/dist/mastodon-timeline.umd.js" integrity="sha256-E6WPG6iq+qQIzvu3HPJJxoAeRdum5siq13x4ITjyxu8=" crossorigin="anonymous"></script>
<div id="mt-container" class="mt-container">
<div class="mt-body" role="feed">
<div class="mt-loading-spinner"></div>
</div>
</div>
<script>
{{ $instance := (index .Params 0) }}
{{ $user := (index .Params 1) }}
{{ $userId := (index .Params 2) }}
{{ $limit := (index .Params 3) }}
window.addEventListener("load", () => {
const myTimeline = new MastodonTimeline.Init({
instanceUrl: "https://{{ $instance }}",
timelineType: "profile",
userId: "{{ $userId }}",
profileName: "@{{ $user }}",
maxNbPostFetch: "{{ $limit }}",
maxNbPostShow: "{{ $limit }}",
defaultTheme: "dark",
markdownBlockquote: true,
hidePinnedPosts: true,
hideReblog: true,
});
});
</script>

0 comments on commit c294b73

Please sign in to comment.