41475f4a5a
Replaces the gumroad_url stub with an on-site embedded checkout (buy button -> POST to the bookshop backend -> mounted Stripe iframe), following the existing contact/submissions form's fetch/status-message pattern. Adds thank-you and resend-link pages, an example book template (draft), and updates the privacy policy and terms to honestly disclose Stripe as a third-party payment processor.
49 lines
1.0 KiB
TOML
49 lines
1.0 KiB
TOML
baseURL = "https://twosquirrelspress.com/"
|
|
locale = "en-US"
|
|
title = "Two Squirrels Press"
|
|
|
|
enableRobotsTXT = true
|
|
buildDrafts = false
|
|
buildFuture = false
|
|
buildExpired = false
|
|
disableKinds = ["taxonomy", "term"]
|
|
|
|
[params]
|
|
env = "production"
|
|
author = "Will Estes"
|
|
description = "Two Squirrels Press — character-driven speculative fiction and poetry."
|
|
eec_base_url = "https://eec.twosquirrelspress.com"
|
|
bookshop_base_url = "https://shop.twosquirrelspress.com"
|
|
# Publishable key is safe to commit (it's meant to be public) — fill in
|
|
# the real key once the Stripe account is set up.
|
|
stripe_publishable_key = ""
|
|
|
|
[[menu.main]]
|
|
name = "Books"
|
|
url = "/books/"
|
|
weight = 10
|
|
|
|
[[menu.main]]
|
|
name = "Authors"
|
|
url = "/authors/"
|
|
weight = 20
|
|
|
|
[[menu.main]]
|
|
name = "Submissions"
|
|
url = "/submissions/"
|
|
weight = 30
|
|
|
|
[[menu.footer]]
|
|
name = "Contact"
|
|
url = "/contact/"
|
|
weight = 10
|
|
|
|
[[menu.footer]]
|
|
name = "Privacy"
|
|
url = "/privacy/"
|
|
weight = 20
|
|
|
|
[[menu.footer]]
|
|
name = "Terms"
|
|
url = "/terms/"
|
|
weight = 30 |