diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-11-29 23:31:47 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-11-29 23:31:47 +0300 |
commit | a22f8047396999bc444c078578c95ab72cf95d30 (patch) | |
tree | 1b47014c1576c783e89646ada7071b60e978c6a2 | |
parent | ec9f6647b9fd81041950d4761850eb286ab51f97 (diff) |
Add page tag
-rw-r--r-- | layouts/index.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/layouts/index.html b/layouts/index.html index fa9d68a..720ea37 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,7 +1,9 @@ {{ define "main" }} -{{ partial "body/contacts.html" . }} -{{ partial "body/education.html" . }} -{{ partial "body/experience.html" . }} -{{ partial "body/projects.html" . }} -{{ partial "body/skills.html" . }} +<page> + {{ partial "body/contacts.html" . }} + {{ partial "body/education.html" . }} + {{ partial "body/experience.html" . }} + {{ partial "body/projects.html" . }} + {{ partial "body/skills.html" . }} +</page> {{ end }}
\ No newline at end of file |