[postgis-tickets] [SCM] postgis.net branch website updated. dd3ae07e4cf038dae190d3f9b1178ef2606e4593

git at osgeo.org git at osgeo.org
Sun Apr 24 10:40:30 PDT 2022


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "postgis.net".

The branch, website has been updated
       via  dd3ae07e4cf038dae190d3f9b1178ef2606e4593 (commit)
      from  dc1c63e4da06b4a947245d3a501eef7a155c39a3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit dd3ae07e4cf038dae190d3f9b1178ef2606e4593
Author: Regina Obe <lr at pcorp.us>
Date:   Sun Apr 24 13:40:25 2022 -0400

    Add pgcon 2022.  Clean up formatting of events

diff --git a/content/events/foss4g2022.md b/content/events/foss4g2022.md
index 082bc6e..b80ca02 100644
--- a/content/events/foss4g2022.md
+++ b/content/events/foss4g2022.md
@@ -10,3 +10,16 @@ eventLink: https://2022.foss4g.org/
 location: "Firenze, Italy"
 image: "https://2022.foss4g.org/img/logo/logo-dark.png"
 ---
+
+
+FOSS4G is the acronym for Free and Open Source Software for Geospatial. It is the annual recurring global event hosted by [OSGeo](https://www.osgeo.org),
+ the non-profit organization that supports and promotes the collaborative development of free and open source geographic technologies and open geospatial data.
+
+<!-- more -->
+
+## What to Expect
+This year FOSS4G will be held both in Person and Online.
+
+The conference covers all kinds of topics related to geospatial information and earth observation openness from Software development to Transition to FOSS4G, Use cases and applications, Education and research and Open data.
+
+There will be LOTS of talks about PostGIS.
\ No newline at end of file
diff --git a/content/events/pgcon2022.md b/content/events/pgcon2022.md
new file mode 100644
index 0000000..1b8c25d
--- /dev/null
+++ b/content/events/pgcon2022.md
@@ -0,0 +1,27 @@
+---
+title: PGCon 2022
+category: events
+date: "2022-04-22"
+eventDates: "2022 May 24th To May 27th"
+tags: ["events", "pgcon"]
+type: event
+featured: true
+eventLink: https://www.pgcon.org/2022/
+location: "Online"
+image: "https://www.pgcon.org/2022/images/pgcon.png"
+---
+
+PGCon is an annual conference for users and developers of PostgreSQL.
+Learn all about PostgreSQL include upcoming 15.
+There will also be at least one talk about PostGIS.
+
+<!-- more -->
+
+## What to Expect
+
+This year is Online.
+
+* Tutorials: 24-25 May 2022 (Tue & Wed)
+* Unconference: 25 May 2022 (Wed)
+* Talks: 26-27 May 2022 (Thu-Fri)
+
diff --git a/layouts/partials/event.html b/layouts/partials/event-meta.html
similarity index 97%
copy from layouts/partials/event.html
copy to layouts/partials/event-meta.html
index 3825d56..46adb1c 100644
--- a/layouts/partials/event.html
+++ b/layouts/partials/event-meta.html
@@ -5,5 +5,4 @@
 			{{- if .Params.eventDates }} {{.Params.eventDates}}{{ end }}
 			{{- if .Params.location }}, {{.Params.location}}{{ end }}
 			{{- if .Params.videosLink }}<a class="post_tag button button_translucent" href="{{.Params.videosLink}}">Videos</a><br />{{ end }}
-	{{.Content}}
 	</div>
diff --git a/layouts/partials/event.html b/layouts/partials/event.html
index 3825d56..da391e9 100644
--- a/layouts/partials/event.html
+++ b/layouts/partials/event.html
@@ -5,5 +5,5 @@
 			{{- if .Params.eventDates }} {{.Params.eventDates}}{{ end }}
 			{{- if .Params.location }}, {{.Params.location}}{{ end }}
 			{{- if .Params.videosLink }}<a class="post_tag button button_translucent" href="{{.Params.videosLink}}">Videos</a><br />{{ end }}
-	{{.Content}}
+		{{.Content}}
 	</div>
diff --git a/layouts/partials/excerpt.html b/layouts/partials/excerpt.html
index 1140692..9ff7dcc 100644
--- a/layouts/partials/excerpt.html
+++ b/layouts/partials/excerpt.html
@@ -5,7 +5,7 @@
         <a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title  }}</a>
       </h3>
 			{{if eq .Params.category "events"}}
-			{{ partial "event" . }}
+			{{ partial "event-meta" . }}
 			{{ else }}
       {{ partial "post-meta" . }}
 			{{ end }}
diff --git a/layouts/partials/sidehome.html b/layouts/partials/sidehome.html
index 186d586..31caef4 100644
--- a/layouts/partials/sidehome.html
+++ b/layouts/partials/sidehome.html
@@ -37,14 +37,14 @@
     </ul>
     {{- end }}
 		{{$events := where .Site.Pages "Params.category" "eq" ("events") }}
-		<h3>Upcoming Events</h2>
+		<h3>Upcoming Events</h3>
 		{{ range where $events "Params.featured" true }}
-				{{ partial "event" . }}
+				{{ partial "event-meta" . }}<br/>
 		{{end }}
-		<br />
+		<br /><br />
 		<h3>Past Events</h3>
 		{{ range first 2 (where $events "Params.featured" "ne" true)  }}
-				{{ partial "event" . }}
+				{{ partial "event-meta" . }}
 		{{end }}
 
 		<h2>Tips</h2>

-----------------------------------------------------------------------

Summary of changes:
 content/events/foss4g2022.md                     | 13 ++++++++++++
 content/events/pgcon2022.md                      | 27 ++++++++++++++++++++++++
 layouts/partials/{event.html => event-meta.html} |  1 -
 layouts/partials/event.html                      |  2 +-
 layouts/partials/excerpt.html                    |  2 +-
 layouts/partials/sidehome.html                   |  8 +++----
 6 files changed, 46 insertions(+), 7 deletions(-)
 create mode 100644 content/events/pgcon2022.md
 copy layouts/partials/{event.html => event-meta.html} (97%)


hooks/post-receive
-- 
postgis.net


More information about the postgis-tickets mailing list