index.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>.Sites.name</title>
  7. {{- partial "head.html" . -}}
  8. </head>
  9. <body data-spy="scroll" data-target="#top-navbar" data-offset="50">
  10. <!--- NAVBAR START ---->
  11. {{- partial "navbar.html" . -}}
  12. <!--- NAVBAR END ---->
  13. <!--- LANDING SECTION START ---->
  14. {{- partial "landing.html" . -}}
  15. <!--- LANDING SECTION END ---->
  16. <!--- ABOUT SECTION START --->
  17. {{- partial "about.html" . -}}
  18. <!--- ABOUT SECTION END ---->
  19. <!--- SKILLS SECTION START --->
  20. {{- partial "skills.html" . -}}
  21. <!--- SKILLS SECTION END ---->
  22. <!--- EXPERIENCE SECTION START --->
  23. {{- partial "experiences.html" . -}}
  24. <!--- EXPERIENCE SECTION END ---->
  25. <!--- PROJECT SECTION START --->
  26. {{- partial "projects.html" . -}}
  27. <!--- PROJECT SECTION END ---->
  28. <!--- RECENT-POSTS SECTION START --->
  29. {{- partial "recent-posts.html" . -}}
  30. <!--- RECENTS-POSTS SECTION END ---->
  31. <!--- ACHIEVEMENT SECTION START --->
  32. {{- partial "achievements.html" . -}}
  33. <!--- ACHIEVEMENTS SECTION END ---->
  34. <!--- FOOTER START --->
  35. {{- partial "footer.html" . -}}
  36. <!--- FOOTER END ---->
  37. </body>
  38. </html>