Create "Online Resources" page.
authorJonathan S. Katz <jonathan.katz@excoventures.com>
Mon, 16 Apr 2018 03:45:18 +0000 (23:45 -0400)
committerJonathan S. Katz <jonathan.katz@excoventures.com>
Tue, 17 Apr 2018 17:43:12 +0000 (13:43 -0400)
The online resources page guides users to other digital resources
for learning about and better utilizing PostgreSQL.

Author: Sarah Conway <sarah.conway@crunchydata.com>

templates/pages/docs/online-resources.html [new file with mode: 0644]

diff --git a/templates/pages/docs/online-resources.html b/templates/pages/docs/online-resources.html
new file mode 100644 (file)
index 0000000..b73e95c
--- /dev/null
@@ -0,0 +1,53 @@
+{%extends "base/page.html"%}
+{%block title%}Online Resources{%endblock%}
+{%block contents%}
+
+<h1>Online Resources <i class="fas fa-keyboard"></i></h1>
+
+<table class="table table-striped">
+  <thead class="thead-light">
+    <tr>
+      <th>Website URL</th>
+      <th>Description</th>
+    </tr>
+  </thead>
+  <tbody>
+    <tr>
+      <td>
+        <a href="http://www.postgresqltutorial.com/">PostgreSQL Tutorial</a>
+      </td>
+      <td>Learn PostgreSQL and how to get started quickly through practical examples.</td>
+    </tr>
+    <tr>
+      <td>
+        <a href="http://www.tutorialspoint.com/postgresql/">Tutorials Point PostgreSQL</a>
+      </td>
+      <td>A full, free online course for walking through PostgreSQL, from the basics to advanced administration.</td>
+    </tr>
+    <tr>
+      <td>
+        <a href="https://pgexercises.com/">PG Exercises</a>
+      </td>
+      <td>Free online exercises for learning PostgreSQL in an interactive manner.</td>
+    </tr>
+    <tr>
+      <td>
+        <a href="https://zaiste.net/posts/postgresql_primer_for_busy_people/">PostgreSQL Primer for Busy People</a>
+      </td>
+      <td>A handy single-paged resource and reference guide for getting started with PostgreSQL.</td>
+    </tr>
+    <tr>
+      <td>
+        <a href="http://schemaverse.com/">Schemaverse</a>
+      </td>
+      <td>A space-based strategy game implemented entirely within a PostgreSQL database.</td>
+    </tr>
+    <tr>
+      <td>
+        <a href="https://github.com/dhamaniasad/awesome-postgres">Awesome Postgres</a>
+      </td>
+      <td>A curated list of awesome PostgreSQL software, libraries, tools and resources.</td>
+    </tr>
+  </tbody>
+</table>
+{%endblock%}