{{define "content"}} {{- if .Data.FrontendTabs}}

Frontend

The following incredible projects make developing advanced, modern frontends possible and simple without having to write a single line of JS or CSS. You can go extremely far without leaving the comfort of Go with server-side rendered HTML.

{{template "tabs" .Data.FrontendTabs}}
{{- end}} {{- if .Data.BackendTabs}}

Backend

The following incredible projects provide the foundation of the Go backend. See the repository for a complete list of included projects.

{{template "tabs" .Data.BackendTabs}}
{{end}} {{- if .Data.ShowCacheWarning}}

Warning

This route has caching enabled so hot-reloading in the local environment will not work.
{{- end}} {{end}} {{define "tabs"}}
{{- range $index, $tab := .}}

→ {{.Body}}

{{- end}}
{{end}}