steverusso
1b2686c3eb
Added all the things. Updated gitignore and README. Removed all the things. Reviewed-by: jeff <jeff@simplesystems.tech>
22 lines
398 B
HTML
22 lines
398 B
HTML
{{ define "main" }}
|
|
{{ .Content }}
|
|
|
|
<div class="container">
|
|
<div class="row text-center">
|
|
<div class="col xs-12">
|
|
<h1>Blog</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row justify-center">
|
|
{{ range .Pages }}
|
|
<div class="col xs-12 sm-9 md-6">
|
|
<a href="{{ .Permalink }}">
|
|
{{ partial "cards/app-card.html" .Params }}
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|