# Hostkeeper V2 — HTMX Components & Partials > **Status**: Menggantikan React Component Tree > **Last Updated**: 2026-07-07 > **Framework**: Go HTML Template + HTMX + Alpine.js --- ## 1. Template Structure ``` views/ ├── layout.html ← Base layout (html, head, body, sidebar, header, scripts) ├── index.html ← Entry: {{template "layout" .}} + {{template "content" .}} │ └── partials/ ← HTMX-swappable partial fragments ├── nav.html ├── dashboard.html ├── host_list.html ├── host_card.html ├── host_modal.html ├── terminal.html ├── sftp.html ├── sftp_pane.html ├── snippets.html ├── snippet_grid.html ├── snippet_modal.html ├── keychain.html ├── key_grid.html ├── key_modal.html ├── settings.html ├── brief.html └── toast.html ``` --- ## 2. Komponen per Halaman ### 2.1 Navigasi (layout.html + nav.html) ```html
{{.Desc}}
Flush all app state — this cannot be undone.