iris/_examples/mvc/controller-with-model-and-view/views/profile/profile.html

13 lines
220 B
HTML
Raw Normal View History

<html>
<head>
<title>Profile of {{.User.Username}}</title>
</head>
<body>
<p>
This is the profile of a user with ID: <b>{{.User.ID}}</b> and Username: <b>{{.User.Username}}</b>
</p>
</body>
</html>