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

{{ . }}

{{ with $data.description }}

{{ . }}

{{ end }}
{{ end }}
{{ range $index, $plan := $data.plans }}
{{ if $plan.featured }}
Most Popular
{{ end }}

{{ $plan.name }}

{{ $plan.description }}

$ {{ $plan.price }} /month
    {{ range $plan.features }}
  • {{ . }}
  • {{ end }}
{{ $plan.button.text }}
{{ end }}