{{ define "main" }}

{

title: '{{ .Site.Params.title }}' ,
body: '{{ .Site.Params.body }}',
"Q & A": [ {{ range .Site.Params.faq }}
{
Q: '{{ .question }}',
A: '{{ .answer }}'

}
{{ end }} ],
contact: {
{{ range .Site.Params.contact }}
"{{ .service }}": '{{ .input }}'
{{ end }}
},

}

{{ end }}