themes/apachecon/layouts/_default/single.html (24 lines of code) (raw):

<!DOCTYPE HTML> <html> {{ partial "header.html" . }} <body> <!-- Header Wrapper --> <div class="wrapper style1"> <!-- Header --> <div id="header"> {{ partial "nav.html" . }} </div> <!-- Main --> <div id="main" class="wrapper page"> <!-- Content --> <div id="content" class="container"> <section> <header class="text-center mb-5"> <h2>{{.Title}}</h2> </header> {{.Content}} </section> {{ if eq .Params.identifier "sponsor" }} {{ partial "sponsor.html" . }} {{ end }} </div> </div> {{ partial "footer.html" . }} </body> </html>