Simplify homepage to a data-free markdown body with headshot
deploy / deploy (push) Successful in 4s
deploy / deploy (push) Successful in 4s
Replaces the hero_heading/subheading/intro param-driven layout with a plain markdown body (headshot, Creative Help, Technical Help, bio), so layouts/index.html just renders .Content. Headshot is served from the Linode bucket (same convention as the freebie PDF) rather than committed to git. CSS floats the photo left with the first list wrapping beside it, matching the site's font/color patterns. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -303,3 +303,25 @@ input:focus, textarea:focus {
|
||||
text-align: center;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
/* Home page: hero photo floats left, first list wraps beside it, second
|
||||
section clears below once the photo's height runs out. */
|
||||
main img {
|
||||
float: left;
|
||||
width: 220px;
|
||||
height: auto;
|
||||
margin: 0 1.5rem 1rem 0;
|
||||
border-radius: var(--radius);
|
||||
}
|
||||
main h2:nth-of-type(2) {
|
||||
clear: left;
|
||||
}
|
||||
@media (max-width: 30rem) {
|
||||
main img {
|
||||
float: none;
|
||||
width: 100%;
|
||||
max-width: 220px;
|
||||
margin: 0 auto 1.5rem;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
+16
-10
@@ -1,13 +1,19 @@
|
||||
---
|
||||
title: "ReGround"
|
||||
hero_heading: "Your story deserves readers who feel it."
|
||||
hero_subheading: "ReGround helps fiction authors find the readers who were always meant to find them."
|
||||
intro: |
|
||||
Writing a novel is a years-long act of faith. Finding the readers who will
|
||||
actually connect with it shouldn't be left to chance. I work with authors
|
||||
to understand both sides of that relationship — what it took to write the
|
||||
book, and what a reader is searching for when they pick one up — and use
|
||||
that to build a path between them.
|
||||
cta_text: "Get in touch"
|
||||
cta_link: "/contact/"
|
||||
description: "DevOps consulting, ghostwriting, and helping fiction authors find their right readers"
|
||||
---
|
||||
|
||||

|
||||
|
||||
## Creative Help
|
||||
|
||||
- Go from "author" to [someone your fans seek out](/freebie).
|
||||
- Help your customers go from "found you" to "trust you." [See it in action](/courses/find-your-right-readers/)
|
||||
|
||||
## Technical Help
|
||||
|
||||
- Enterprise-grade reliability for small
|
||||
businesses, without the overhead. [Get in
|
||||
touch](/contact/).
|
||||
|
||||
Will Estes lives outside Atlanta with his children and one very opinionated cat. He plays classical guitar and listens to country music. His favorite season is soup season.
|
||||
|
||||
@@ -10,7 +10,7 @@ disableKinds = ["taxonomy", "term"]
|
||||
|
||||
[params]
|
||||
env = "production"
|
||||
description = "ReGround helps fiction authors find the readers who need their stories."
|
||||
description = "DevOps consulting, ghostwriting, and helping fiction authors find their right readers"
|
||||
author = "Will Estes"
|
||||
eec_base_url = "https://eec.reground.org"
|
||||
|
||||
|
||||
+2
-8
@@ -1,10 +1,4 @@
|
||||
{{ define "main" }}
|
||||
<h1 style="font-size:2.25rem; margin-bottom:0.5rem;">{{ .Params.hero_heading }}</h1>
|
||||
<p style="font-size:1.15rem; opacity:0.85; margin-top:0;">{{ .Params.hero_subheading }}</p>
|
||||
<div style="margin-top:2rem;">{{ .Params.intro | markdownify }}</div>
|
||||
{{ with .Params.cta_text }}
|
||||
<p style="margin-top:2rem;">
|
||||
<a class="btn" href="{{ $.Params.cta_link }}">{{ . }}</a>
|
||||
</p>
|
||||
{{ end }}
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
|
||||
Reference in New Issue
Block a user