Add an about page and a list of the domains we hold.
authorSteve Singer <steve@ssinger.info>
Mon, 6 Jul 2020 08:26:55 +0000 (09:26 +0100)
committerDave Page <dpage@pgadmin.org>
Mon, 6 Jul 2020 08:26:55 +0000 (09:26 +0100)
templates/base.html
templates/pages/about/pgcac.html [new file with mode: 0644]
templates/pages/domains/list.html [new file with mode: 0644]

index 1f118998cdf46e60e6c721b0508a41607c0d7ffc..dbbb43ca9cb055626540e947d954deda26cc8181 100644 (file)
@@ -46,7 +46,9 @@
          <h2>Quick Links</h2>
          <ul>
            <li><a href="/"/>Home</li>
+           <li><a href="/about/pgcac">About</a></li>
            <li><a href="/trademarks/list">Trademarks</a></li>
+           <li><a href="/domains/list">Domain Names</li>
            <li><a href="/about/privacypolicy/">Privacy Policy</a></li>
            <li><a href="/about/website/">Website</a></li>
          </ul>
diff --git a/templates/pages/about/pgcac.html b/templates/pages/about/pgcac.html
new file mode 100644 (file)
index 0000000..a716d03
--- /dev/null
@@ -0,0 +1,25 @@
+{%extends "base.html" %}
+{%block title%}Trademarks{%endblock%}
+{%block maincontent%}
+
+<h1>About</h1>
+<p>
+    The PostgreSQL Community Association of Canada is a Canadian Not For Profit
+    corporation that holds assets for the PostgreSQL project such as domain
+    names and trademarks.
+</p>
+
+<h2>Board Members</h2>
+<p>
+    The board of the PostgreSQL Community Association of Canada currently
+    consists of the following individuals.</o>
+ <ul>
+     <li>Dave Page (Chairman)</li>
+     <li>Chris Browne (Treasurer)</li>
+     <li>Steve Singer (Secretary)</li>
+     <li>Jaime Casanova</li>
+     <li>Peter Eisentraut</li>
+     <li>Marc Fournier</li>
+     <li>Jonathan Katz</li>
+</ul>
+{%endblock%}
diff --git a/templates/pages/domains/list.html b/templates/pages/domains/list.html
new file mode 100644 (file)
index 0000000..2fa99c1
--- /dev/null
@@ -0,0 +1,28 @@
+{%extends "base.html" %}
+{%block title%}Domain Names{%endblock%}
+{%block maincontent%}
+
+<h1>Domain Names</h1>
+<p>
+  The PostgreSQL Community Association of Canada holds the following domain
+  names on behalf of the PostgreSQL project:
+</p>
+
+<p>
+  <ul>
+    <li>pgday.ca</li>
+    <li>postgres.community</li>
+    <li>postgres.org</li>
+    <li>postgres.events</li>
+    <li>postgresql.com</li>
+    <li>postgresql.events</li>
+    <li>postgresql.org</li>
+    <li>postgres.ca</li>
+    <li>postgrsql.company</li>
+    <li>postgresql.co.uk</li>
+    <li>postgresql.uk</li>
+    <li>postgres.com</li>
+  </ul>
+</p>
+
+{%endblock%}