* Add Prettier set-up (no formatting in this commit). * Manual fixes for Prettier issues. * Run Prettier fix on non-markdown files. * Incorporate Prettier PR feedback - update commands, re-apply new yaml styles, add editor config. * Remove deprecated config item. * Add dependency on prettier-plugin-go-template. * reconcile changed file with prettier formatting. * Add git blame ignore revs file to include Prettier formatting commit. * Fix format issue with merge conflict.
21 lines
693 B
HTML
21 lines
693 B
HTML
{{ define "main" }}
|
|
<div class="container mx-auto px-4 py-8">
|
|
<div class="md:flex">
|
|
<div class="md:w-3/12 pr-8">
|
|
<aside>
|
|
<ul class="md:w-8/12 p-0 list-none">
|
|
{{ range .Site.Menus.legal }}
|
|
<li><a data-track="{{ .Title | urlize }}" href="{{ .URL }}">{{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</aside>
|
|
</div>
|
|
<div class="md:w-7/12">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</div>
|
|
<div class="md:w-2/12 pl-8"></div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|