diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2018-01-10 21:09:10 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2018-01-10 21:09:10 +0100 |
commit | 42413235bed80e9af6a9655dba504dbf2bdc572c (patch) | |
tree | 0902fef17fcab699652fc801f7ee36d36ad570a5 /templates/post_teaser.html | |
parent | f6033128292bbd5838a6585a1214bc6c9275de38 (diff) | |
download | rocket-blog-42413235bed80e9af6a9655dba504dbf2bdc572c.tar.gz rocket-blog-42413235bed80e9af6a9655dba504dbf2bdc572c.tar.bz2 rocket-blog-42413235bed80e9af6a9655dba504dbf2bdc572c.zip |
Adding edit/update logic.
The model is not done yet, though. No net on the train.
Diffstat (limited to 'templates/post_teaser.html')
-rw-r--r-- | templates/post_teaser.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/post_teaser.html b/templates/post_teaser.html index 19a30ec..751f4ea 100644 --- a/templates/post_teaser.html +++ b/templates/post_teaser.html @@ -2,10 +2,10 @@ <header> <h1><a href="/posts/{{ .id }}">{{ .title }}</a></h1> <div class="post-actions"> - Edit | Publish | Delete + <a href="/posts/{{ .id }}/edit">Edit</a> | Publish | Delete </div> </header> <section class="teaser"> {{ .body }} </section> -</article>
\ No newline at end of file +</article> |