diff options
author | Vikas Kushwaha <dev@vikas.rocks> | 2025-02-11 17:49:16 +0530 |
---|---|---|
committer | Vikas Kushwaha <dev@vikas.rocks> | 2025-02-11 17:49:16 +0530 |
commit | c720f1f85e5ec7c93604462b7a70e1f84a1ce244 (patch) | |
tree | 6e994a84d2f1b241c31f54e2a2eeca00795faf77 /cmd/web/templates/articles/show.tmpl | |
parent | d7d066cfa1cd16dd502000077696388043c4dab9 (diff) |
Substituted 'article' with 'project'
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> |