Files
builder-prototype/themes/dispute-protocol-theme/layouts/index.html
T
Nathan Schneider 521c782c42 Initial commit
2025-03-23 21:44:39 -06:00

26 lines
684 B
HTML

{{ define "main" }}
<div class="home-content">
<div class="hero">
<h1>{{ .Title }}</h1>
<p class="lead">Create a customized dispute resolution protocol for your community</p>
<a href="/builder/" class="btn-primary">Start Building</a>
<a href="/about/" class="btn-secondary">Learn More</a>
</div>
<div class="content">
{{ .Content }}
</div>
<div class="stages-overview">
<h2>The Dispute Resolution Process</h2>
<div class="stages-grid">
{{ range $.Site.Data.stages.stages }}
<div class="stage-card">
<h3>{{ .title }}</h3>
<p>{{ .description }}</p>
</div>
{{ end }}
</div>
</div>
</div>
{{ end }}