Files
2025-04-29 12:52:55 +02:00

12 lines
241 B
Go

package tradingcards
import (
"gitlab.thpeetz.de/kontor/kontor-go/pkg/util"
"github.com/gin-gonic/gin"
)
func showIndexPage(c *gin.Context) {
util.Render(c, gin.H{"title": "Trading Cards", "payload": nil}, "tradingcards/index.html")
}