]> BookStack Code Mirror - website/commitdiff
Updated sponsors, Added sponsor terms info to donate page
authorDan Brown <redacted>
Wed, 5 Feb 2025 21:02:24 +0000 (21:02 +0000)
committerDan Brown <redacted>
Wed, 5 Feb 2025 21:02:24 +0000 (21:02 +0000)
content/donate/_index.md
themes/bookstack/layouts/index.html
themes/bookstack/static/js/script.js

index e9c518b21cd6d054d879f65d582f2ed6b1fd05bd..596f60d673f98c2d898e125855449fde952287d2 100644 (file)
@@ -9,7 +9,11 @@ BookStack is Open Source software and the code & platform is provided totally wi
 The project was started as a passion project in free time, but has grown to require a lot of time to maintain the project and support the community.
 Donations provide financial support to keep time & focus on the project to help ongoing progress & development.
 
-#### Donation methods
+{{<toc>}}
+
+---
+
+### Donation methods
 
 Currently, donations can be provided directly to the creator of BookStack in a couple of different ways:
 
@@ -17,7 +21,7 @@ Currently, donations can be provided directly to the creator of BookStack in a c
 - [Ko-fi](https://ko-fi.com/ssddanbrown) - Supports payment via PayPal or by card (Stripe).
 
 
-#### How are donations used?
+### How are donations used?
 
 The majority of donations cover the living costs of the project creator, Dan Brown, to allow them to focus on the project as much as possible. As of October 2021 Dan left his day-job to focus on the project; relying on savings, family-support and donations to cover living costs. Our [support plans](/support) were also launched to help support finances.
 
@@ -25,19 +29,34 @@ A portion of donations are effectively forwarded on to other open source project
 
 If interested, further details of our finances are often reported in our blogposts [as reflected in our 2024 review post here](https://www.bookstackapp.com/blog/bookstack-in-2024/#project-funding).
 
-#### Do I need to donate?
+### Do I need to donate?
 
 No, donations are not a requirement nor are they expected. The code and platform is provided for free under the MIT license.
 Donations are an appreciated bonus and can be a straight-forward way to support development of the project, especially for businesses that save money or profit through the use of BookStack.
 
-#### Do I receive anything for my donation?
+### Do I receive anything for my donation?
 
 Apart from our gratitude, there are no material rewards for donations unless stated within our donation options.
-For example, some of the monthly sponsor options offer public display of a company's sponsorship on our website and GitHub repo.
+For example, some of the monthly sponsor options offer a bonus reward of public display of a company's sponsorship on our website and GitHub repo.
 
 If you could benefit from receiving assured technical support, our [support plans](/support) offer a way to support the project while gaining such support benefits.
 
-#### Can I support the project in a non-financial way?
+### Can I support the project in a non-financial way?
 
 Sure! We have a fairly detailed write-up on our blog regarding all the different ways that you can contribute to the project.
-[Check out the blogpost here](https://www.bookstackapp.com/blog/contributing-to-open-source/).
\ No newline at end of file
+[Check out the blogpost here](https://www.bookstackapp.com/blog/contributing-to-open-source/).
+
+### Can a company sponsor the project?
+
+Sure! Within both the [GitHub Sponsors](https://github.com/sponsors/ssddanbrown) and [Ko-fi](https://ko-fi.com/ssddanbrown) donation options there are specific "Bronze", "Silver" and "Gold" company tiers listed.
+These provide the bonus benefit of your linked company logo being shown on the [project homepage](/#sponsors) and [in the project readme](https://github.com/BookStackApp/BookStack/blob/development/readme.md#-project-sponsors).
+
+If preferred, we can provide invoicing and bank transfer options for sponsorship but this is only offered on an annual payment basis.
+
+#### Sponsor Terms
+
+- We reserve the right to reject displaying your logo for any reason. Generally we would only want to advertise companies that are suitable for BookStack's own audience. Some examples of non-suitable category of companies would be: Crypto, Gambling, Adult Entertainment, etc...
+- It's not always possible to refund a payment via our sponsor/donation options. If you need to be sure of reward (that we'd display your logo), please contact us first to confirm eligibility before paying for a sponsor/donation tier. You can contact us via <a href="#" class="email-display">[click here to show email]</a>.
+- Provided logo files may be modified to ensure they display in a standardised and expected manner.
+- Sponsor logo additions/removals may be delayed to be part of other site/project updates. Timings are not assured, but we generally aim to match the length of time displayed, to the length of time for which you have sponsored the project.
+- Provided logos are expected to be just the logo of a company, no additional advertisement/marketing/messaging content.
\ No newline at end of file
index b8eab7a5708ca364b8a80c867321cfc683e53e13..c1d8816a641015a0629d5b266be724146ae24365 100644 (file)
                                                        <img height="86" src="/images/sponsors/practinet.png" alt="Practinet logo">
                                                </a>
 
-                                               <a href="https://transporttalent.com" target="_blank">
-                                                       <img height="86" src="/images/sponsors/transport-talent.png" alt="Transport Talent logo">
-                                               </a>
-
                                                <a href="https://route4me.com/" target="_blank">
                                                        <img height="86" src="/images/sponsors/route4me.png" alt="Route4Me logo - Route Optimizer and Route Planner Software">
                                                </a>
index 8fe5d0fb4438c2c4c6499ab36cae76fcb79db7e7..1cc52bbc1286c2f39df021856f8bbcd19d4b72ee 100644 (file)
@@ -176,4 +176,17 @@ searchInput.addEventListener('input', event => {
     showSearchLoading();
     runSearch();
   }
-})
\ No newline at end of file
+});
+
+
+// Email display
+const emailDisplayLinks = document.querySelectorAll('a.email-display');
+const eb64 = 'ZW1haWxAYm9v' + 'a3N0YWNrYXBwLmNvbQ==';
+for (const link of emailDisplayLinks) {
+  const email = atob(eb64);
+  link.addEventListener('click', e => {
+    e.preventDefault();
+    e.target.textContent = email;
+    e.target.href = 'mailto:' + email;
+  });
+}
\ No newline at end of file