diff options
Diffstat (limited to 'pkg/tpl/profile.templ')
-rw-r--r-- | pkg/tpl/profile.templ | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/tpl/profile.templ b/pkg/tpl/profile.templ new file mode 100644 index 0000000..61a9221 --- /dev/null +++ b/pkg/tpl/profile.templ @@ -0,0 +1,17 @@ +package tpl + +import "go.neonxp.ru/framework/pkg/model" + +templ Profile(user *model.User) { + @Layout() { + <article class="grid"> + <div> + <hgroup> + <h1>{ user.Username }</h1> + <p>{ user.Email }</p> + </hgroup> + </div> + <div></div> + </article> + } +} |