content(about): wire Khabran's bio + multi-paragraph render
Bio embedded as \n\n-delimited string; render splits on that boundary into per-para <p class="bio-body">. Adjacent-sibling margin keeps stacked paragraphs readable. Daniel's single-para bio is unaffected.
This commit is contained in:
@@ -111,7 +111,10 @@
|
|||||||
<div class="bio-name">@member.Name</div>
|
<div class="bio-name">@member.Name</div>
|
||||||
@if (!string.IsNullOrWhiteSpace(member.Bio))
|
@if (!string.IsNullOrWhiteSpace(member.Bio))
|
||||||
{
|
{
|
||||||
<p class="bio-body">@member.Bio</p>
|
@foreach (var para in member.Bio.Split("\n\n", StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries))
|
||||||
|
{
|
||||||
|
<p class="bio-body">@para</p>
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
@@ -353,7 +356,7 @@
|
|||||||
new(
|
new(
|
||||||
Name: "Khabran Peters",
|
Name: "Khabran Peters",
|
||||||
Role: "Production · Sound Design · Live",
|
Role: "Production · Sound Design · Live",
|
||||||
Bio: null,
|
Bio: "Raised on the Chicago underground, this artist cut their teeth on DJ Assault and DJ Funk. They started DJing young, learning to read a room long before they opened a DAW. After fifteen years as a visual artist, they moved into music production.\n\nNow based in Charleston, their sound carries the city's late-night feel but keeps the kinetic edge of its Midwest roots—deep one minute, fast the next. As much indie sensibility as booty-house grit.\n\nThe work is hardware-first, with software kept to remixes and edits. Onstage they stay out of the way and let the tracks do the talking. Polished without being precious—built by someone who cares more about the craft than the spotlight.",
|
||||||
PortraitImage1: "img/dd-khabran-bw.jpeg",
|
PortraitImage1: "img/dd-khabran-bw.jpeg",
|
||||||
PortraitImage2: "img/dd-khabran.jpeg"),
|
PortraitImage2: "img/dd-khabran.jpeg"),
|
||||||
new(
|
new(
|
||||||
|
|||||||
@@ -321,6 +321,10 @@
|
|||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bio-body + .bio-body {
|
||||||
|
margin-top: 0.75em;
|
||||||
|
}
|
||||||
|
|
||||||
/* ── Inset framed figure (gear shot) with rail-side caption ── */
|
/* ── Inset framed figure (gear shot) with rail-side caption ── */
|
||||||
.movement-figure {
|
.movement-figure {
|
||||||
margin: 5rem 0 0;
|
margin: 5rem 0 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user