about.html
 1{{define "content"}}
 2<section aria-labelledby="about-heading">
 3  <h2 id="about-heading">About</h2>
 4  
 5  {{if .ReadmeHTML}}
 6  {{.ReadmeHTML}}
 7  {{else}}
 8  <p>No readme found.</p>
 9  <p>Create a <code>.soft-serve</code> repository and add a <code>README.md</code> file to display information here.</p>
10  {{end}}
11</section>
12{{end}}