This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
generated from aaranxu/adidoks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Created popup for donating crypto via QR * Added Bitcoin and Ethereum using the popup * Added Buymeacoffee donate button * Added Patreon donate button --------- Co-authored-by: Kirill Taran <[email protected]>
- Loading branch information
1 parent
015be5e
commit 0b658cc
Showing
14 changed files
with
149 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
+++ | ||
weight = 20 | ||
title = "Donate using Bitcoin" | ||
template = "popup.html" | ||
description = "Send us the transaction id by email [email protected] to receive premium support. We`ll make our best to help you with any issue you encounter while using our Software." | ||
|
||
[extra] | ||
image = "support/bitcoin.svg" | ||
alt = "Donate Bitcoin" | ||
crypto = true | ||
qr_code = "support/qr/btc.jpg" | ||
wallet_address = "bc1qx8n9r4uwpgrhgnamt2uew53lmrxd8tuevp7lv5" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
+++ | ||
weight = 20 | ||
title = "Donate using Ethereum" | ||
template = "popup.html" | ||
description = "Send us the transaction id by email [email protected] to receive premium support. We will make our best to help you with any issue you encounter while using our Software." | ||
|
||
[extra] | ||
image = "support/ethereum.svg" | ||
alt = "Donate Ethereum" | ||
crypto = true | ||
qr_code = "support/qr/eth.jpg" | ||
wallet_address = "0x9765C5aC38175BFbd2dC7a840b63e50762B80a1b" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
+++ | ||
weight = 30 | ||
title = "Support us on Patreon" | ||
template = "404.html" | ||
|
||
[extra] | ||
image = "support/patreon.png" | ||
alt = "Support us on Patreon" | ||
url = "https://www.patreon.com/ARKBuilders" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block seo %} | ||
{{ super() }} | ||
|
||
{% set title = page.title %} | ||
|
||
{% if config.title %} | ||
{% set title_addition = title_separator ~ config.title %} | ||
{% else %} | ||
{% set title_addition = "" %} | ||
{% endif %} | ||
|
||
{% set description = page.description %} | ||
|
||
{{ macros_head::seo(title=title, title_addition=title_addition, description=description) }} | ||
{% endblock seo %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters