From a8046317524f70e793dfbfd3989fd7d69ceb6925 Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Sun, 15 Apr 2018 23:45:18 -0400 Subject: [PATCH] Create "Online Resources" page. The online resources page guides users to other digital resources for learning about and better utilizing PostgreSQL. Author: Sarah Conway --- templates/pages/docs/online-resources.html | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 templates/pages/docs/online-resources.html diff --git a/templates/pages/docs/online-resources.html b/templates/pages/docs/online-resources.html new file mode 100644 index 00000000..b73e95c7 --- /dev/null +++ b/templates/pages/docs/online-resources.html @@ -0,0 +1,53 @@ +{%extends "base/page.html"%} +{%block title%}Online Resources{%endblock%} +{%block contents%} + +

Online Resources

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Website URLDescription
+ PostgreSQL Tutorial + Learn PostgreSQL and how to get started quickly through practical examples.
+ Tutorials Point PostgreSQL + A full, free online course for walking through PostgreSQL, from the basics to advanced administration.
+ PG Exercises + Free online exercises for learning PostgreSQL in an interactive manner.
+ PostgreSQL Primer for Busy People + A handy single-paged resource and reference guide for getting started with PostgreSQL.
+ Schemaverse + A space-based strategy game implemented entirely within a PostgreSQL database.
+ Awesome Postgres + A curated list of awesome PostgreSQL software, libraries, tools and resources.
+{%endblock%} -- 2.39.5