Add JackDB and PGX
authorStephen Frost <sfrost@snowman.net>
Tue, 16 May 2017 14:27:43 +0000 (10:27 -0400)
committerStephen Frost <sfrost@snowman.net>
Tue, 16 May 2017 14:27:43 +0000 (10:27 -0400)
static/images/jackdb-logomark-700x200.png [new file with mode: 0644]
static/images/pg_exp.png [new file with mode: 0644]
templates/context.json
templates/pages/sponsors.html

diff --git a/static/images/jackdb-logomark-700x200.png b/static/images/jackdb-logomark-700x200.png
new file mode 100644 (file)
index 0000000..d73b5e1
Binary files /dev/null and b/static/images/jackdb-logomark-700x200.png differ
diff --git a/static/images/pg_exp.png b/static/images/pg_exp.png
new file mode 100644 (file)
index 0000000..f95719e
Binary files /dev/null and b/static/images/pg_exp.png differ
index 5a478601093d82c66a07404e175ebac3e9e53bb3..bcb896a7bf1d266c4d64167e182cf4f70d36d6b7 100644 (file)
        }
     ],
 
+    "supporter": [
+       {
+           "name": "JackDB",
+           "logo": "jackdb-logomark-700x200.png",
+           "largelogo": "jackdb-logomark-700x200.png",
+           "badgelogo": "jackdb-logomark-700x200.png",
+           "link": "https://www.jackdb.com/",
+           "intro": "JackDB"
+       },
+       {
+           "name": "PostgreSQL Experts",
+           "logo": "pg_exp.png",
+           "largelogo": "pg_exp.png",
+           "badgelogo": "pg_exp.png",
+           "link": "https://www.pgexperts.com/",
+           "intro": "PostgreSQL Experts"
+       }
+    ],
+
        "blogposts": [
        {
                "title": "Blog Entry 1",
index 8006fc0be8f8c9ff60a19f16acce5f8eaa66b49f..28c270174ea355ee46fa039705b5b8a164b87262 100644 (file)
 {% endfor %}
 </div>
 <hr>
+
+<h3>Supporter</h3>
+<div class="row text-center">
+{% for p in supporter %}
+  <div class="col-md-6 col-md-4">
+       <!-- Silver -->
+               <a href="{{p.link}}" target="_blank"><img id="sponsors" src="{{media("images/" + p.largelogo)}}" alt="{{p.name}}"></a>
+               <div class="caption">
+                       <small><em>{{p.intro}}</em></small>
+               </div>
+       </div>
+{% endfor %}
+</div>
+<hr>
 {% endblock %}