I have a simple Go / Gin web app. I need to put some dynamic content in html template.
For e.g. I have a few tables (the number is dynamic) with a few rows (the number is dynamic). I need to put them in html template. Is there any way to combine templates in code? I'd prefer to use templates rather than build tables in the code.
I've checked a tutorial https://github.com/gin-gonic/gin but it is not covered there.