14 lines
259 B
Plaintext
14 lines
259 B
Plaintext
package page
|
|
|
|
import "projectreshoot/internal/view/layout"
|
|
import "projectreshoot/pkg/contexts"
|
|
|
|
templ Profile() {
|
|
{{ user := contexts.GetUser(ctx) }}
|
|
@layout.Global("Profile - " + user.Username) {
|
|
<div class="">
|
|
Hello, { user.Username }
|
|
</div>
|
|
}
|
|
}
|