diff options
Diffstat (limited to 'cmd/web/templates/articles/show.tmpl')
-rw-r--r-- | cmd/web/templates/articles/show.tmpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/web/templates/articles/show.tmpl b/cmd/web/templates/articles/show.tmpl index cd372d4..2078016 100644 --- a/cmd/web/templates/articles/show.tmpl +++ b/cmd/web/templates/articles/show.tmpl @@ -2,15 +2,15 @@ <div class="banner"> <div class="container"> - <h1 id="article-detail__title"> + <h1 id="project-detail__title"> {{ .Project.Title }} </h1> - {{ template "articles/partials/detail-post-meta" . }} + {{ template "projects/partials/detail-post-meta" . }} </div> </div> - <div class="article-detail container page"> + <div class="project-detail container page"> <div class="row post-content"> <div class="col-md-12"> {{ .Project.Body }} @@ -27,11 +27,11 @@ <hr /> <div class="post-actions"> - {{ template "articles/partials/detail-post-meta" . }} + {{ template "projects/partials/detail-post-meta" . }} </div> <div class="row"> - <div class="col-md-8 col-md-offset-2" hx-get="/htmx/articles/{{ .Project.Slug }}/comments" hx-trigger="load"></div> + <div class="col-md-8 col-md-offset-2" hx-get="/htmx/projects/{{ .Project.Slug }}/comments" hx-trigger="load"></div> </div> </div> |