Turbo/Frames

{{/* app/views/posts/show.html.tpl */}}
<section>
  <h1>{{.post.Title}}</h1>
  {{ turbo_frame "comments" . (turbo_src (path_for "post_comments" .post.ID)) (turbo_loading "lazy") }}
</section>
{{/* app/views/posts/_comments_frame.html.tpl */}}
<ol>
  {{ range .comments }}
    <li>{{.Body}}</li>
  {{ else }}
    <li>No comments yet.</li>
  {{ end }}
</ol>