diff --git a/src/render.rs b/src/render.rs index 598d48bce..186b96d24 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 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, }) diff --git a/templates/index.html b/templates/index.html index 5fc0d9a77..f499f4047 100644 --- a/templates/index.html +++ b/templates/index.html @@ -25,10 +25,10 @@