10 lines
152 B
HTML
10 lines
152 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
{% include "head.html" %}
|
||
|
<body>
|
||
|
{% include "top_bar.html" %}
|
||
|
|
||
|
Hi there, {{ user.full_name }}!
|
||
|
</body>
|
||
|
</html>
|