package cethttp
import (
"html/template"
"strings"
)
const html5Template = `
IslamBosna
{{.}}
`
func html5Page(html string) string {
t1 := template.New("html5Template")
t1, _ = t1.Parse(html5Template)
result := new(strings.Builder)
// execute template with html as data into result string io writer stream
t1.Execute(result, template.HTML(html))
return result.String()
}