about summary refs log tree commit diff
path: root/src/render.rs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-04-14T15·55+0200
committerVincent Ambo <tazjin@gmail.com>2018-04-14T15·55+0200
commitc6995fcab3e8f2d2db7d4c7647811f0dd038ab2b (patch)
tree00beb1879ad097487ccb07b5be40cdfbfbe5b06e /src/render.rs
parentd1c45159b9bb23553768b06ce7ad97ec38e8b845 (diff)
feat(templates): Highlight stickied threads in index
Diffstat (limited to 'src/render.rs')
-rw-r--r--src/render.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/render.rs b/src/render.rs
index 598d48bce8..186b96d247 100644
--- a/src/render.rs
+++ b/src/render.rs
@@ -58,6 +58,7 @@ impl Message for IndexPage {
 struct IndexThread {
     id: i32,
     title: String,
+    sticky: bool,
     posted: FormattedDate,
     author_name: String,
 }
@@ -71,6 +72,7 @@ impl Handler<IndexPage> for Renderer {
             .map(|thread| IndexThread {
                 id: thread.thread_id,
                 title: escape_html(&thread.title),
+                sticky: thread.sticky,
                 posted: thread.posted.into(),
                 author_name: thread.thread_author,
             })