We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I ran the example and don't know the meaning of templates/article.html.
templates/article.html
As I view http://localhost:8080/article, I got
http://localhost:8080/article
Title: Html5 Article Engine index template: Hi, this is index.html
What's the relationship of this page with templates/article.html???
The text was updated successfully, but these errors were encountered:
I have no idea why article not work fine, I try to modify and it's work.
base.html
Title: {{ .title }} index template: {{template "body" .}}
article.html
{{define "body"}} Hi {{ .title }}, this is article template {{end}}
index.html
{{define "body"}} Hi, this is index.html {{end}}
example.go
package main import ( "github.com/gin-contrib/multitemplate" "github.com/gin-gonic/gin" ) func createMyRender() multitemplate.Renderer { r := multitemplate.NewRenderer() r.AddFromFiles("index", "templates/base.html", "templates/index.html") r.AddFromFiles("article", "templates/base.html", "templates/article.html") return r } func main() { router := gin.Default() router.HTMLRender = createMyRender() router.GET("/", func(c *gin.Context) { c.HTML(200, "index", gin.H{ "title": "Html5 Template Engine", }) }) router.GET("/article", func(c *gin.Context) { c.HTML(200, "article", gin.H{ "title": "Html5 Article Engine", }) }) router.Run(":8080") }
Sorry, something went wrong.
After 3 years still not corrected.
No branches or pull requests
I ran the example and don't know the meaning of
templates/article.html
.As I view
http://localhost:8080/article
, I gotWhat's the relationship of this page with
templates/article.html
???The text was updated successfully, but these errors were encountered: