diff --git a/web/download.html b/web/download.html index 30e70d9..2bbd841 100644 --- a/web/download.html +++ b/web/download.html @@ -53,6 +53,7 @@
  • Download
  • +
  • Sponsors
  • diff --git a/web/howto/header.html b/web/howto/header.html index 52abe76..f8f7738 100644 --- a/web/howto/header.html +++ b/web/howto/header.html @@ -52,6 +52,7 @@
  • Download
  • +
  • Sponsors
  • diff --git a/web/img/2ndquadrant_logo_full_color.640.jpg b/web/img/2ndquadrant_logo_full_color.640.jpg new file mode 100644 index 0000000..f9157e2 Binary files /dev/null and b/web/img/2ndquadrant_logo_full_color.640.jpg differ diff --git a/web/img/2ndquadrant_logo_full_color.800.jpg b/web/img/2ndquadrant_logo_full_color.800.jpg new file mode 100644 index 0000000..86f4c6b Binary files /dev/null and b/web/img/2ndquadrant_logo_full_color.800.jpg differ diff --git a/web/img/2ndquadrant_logo_full_color.jpg b/web/img/2ndquadrant_logo_full_color.jpg new file mode 100644 index 0000000..4d938c5 Binary files /dev/null and b/web/img/2ndquadrant_logo_full_color.jpg differ diff --git a/web/index.html b/web/index.html index 1e5f4f4..c8871a0 100644 --- a/web/index.html +++ b/web/index.html @@ -53,6 +53,7 @@
  • Download
  • +
  • Sponsors
  • diff --git a/web/sponsors.html b/web/sponsors.html new file mode 100644 index 0000000..358f73b --- /dev/null +++ b/web/sponsors.html @@ -0,0 +1,163 @@ + + + + + + + + + + + + pgloader + + + + + + + + + + + + + + + +
    +
    +
    +

    + pgloader + by + 2ndQuadrant + +

    +

    + The pgloader project is fully Open Source and released + under The PostgreSQL License so that anyone can easily + contribute to the project. The whole project management (issue + tracking, feature proposals, etc) happens on + the pgloader + github page, in public. +

    + + 2ndQuadrant + +

    + The development of pgloader has been made possible + by 2ndQuadrant, Global + experts in PostgreSQL support, training, development, migration + and consultancy, who are seeing through the financial + aspects of the development of the product and allow its main + author to invest a lot of time in this community project. +

    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/src/docs.lisp b/web/src/docs.lisp index 5ef396a..b48cde7 100644 --- a/web/src/docs.lisp +++ b/web/src/docs.lisp @@ -1,5 +1,6 @@ (defpackage #:pgloader.docs - (:use #:cl #:cl-markdown #:pgloader.utils #:pgloader.params) + (:use #:cl #:cl-markdown #:pgloader.params) + (:import-from #:alexandria #:read-file-into-string) (:export #:build-docs)) (in-package #:pgloader.docs) @@ -32,9 +33,9 @@ :external-format :utf-8 :if-exists :supersede :if-does-not-exist :create) - (write-string (slurp-file-into-string *header*) s) - (markdown (slurp-file-into-string file) :stream s) - (write-string (slurp-file-into-string *footer*) s)))) + (write-string (read-file-into-string *header* :external-format :utf-8) s) + (markdown (read-file-into-string file :external-format :utf-8) :stream s) + (write-string (read-file-into-string *footer* :external-format :utf-8) s)))) (defun build-docs () "Build the HTML files from the Markdown ones."