{{ $data := .Inner | unmarshal }}
{{ with $data.title }}

{{ . }}

{{ with $data.description }}

{{ . }}

{{ end }}
{{ end }}
{{ range $index, $plan := $data.plans }}
{{ if $plan.featured }}
{{ i18n "mostPopular" }}
{{ end }} {{ if $plan.selfhosted }}
{{ i18n "selfHosted" }}
{{ end }}

{{ $plan.name }}

{{ $plan.description }}

{{ if $plan.price }}
{{ $plan.price }} {{ i18n $plan.price_unit }}
{{ $plan.additional_price }} {{ i18n $plan.additional_price_unit }}
{{ end }}
    {{ range $plan.features }}
  • {{ . }}
  • {{ end }}
{{ with .additional_description }}
{{ . }}
{{ end }} {{ $plan.button.text }}
{{ end }}