about summary refs log tree commit diff
path: root/templates
AgeCommit message (Collapse)AuthorFilesLines
2018-04-14 fix(templates): Fluidly scale all imagesVincent Ambo1-0/+2
2018-04-14 fix(templates): Set CSPs on templatesVincent Ambo3-0/+3
2018-04-14 feat(templates): Highlight stickied threads in indexVincent Ambo1-2/+2
2018-04-12 feat(handler): Perform basic input validation on new thread viewVincent Ambo2-6/+7
2018-04-11 fix(templates/handlers): Fix post anchorsVincent Ambo1-2/+4
- ensure users are correctly linked to a post actor after replying - ensure timestamps are clickable to get post IDs
2018-04-11 feat(render): Implement Markdown thread rendering & GravatarVincent Ambo1-25/+6
Implements a new thread rendering pipeline which all posts and the main thread body are first converted to a `RenderablePost` structure. During the conversion to this structure, the post body is rendered as Markdown and the author's email address is converted into the format required by Gravatar.
2018-04-09 fix(templates): Fix author name & avatar displayVincent Ambo1-4/+12
2018-04-09 feat(handlers/templates): Add "New Thread" handler and templateVincent Ambo1-0/+52
2018-04-09 feat(templates): Slightly less barebones index & thread templatesVincent Ambo2-39/+115
2018-04-08 feat(templates): Display author information in templatesVincent Ambo2-3/+3
2018-04-08 feat(templates): Add shitty little response form in thread viewVincent Ambo2-2/+14
2018-04-08 feat(templates): Add a shitty thread submission formVincent Ambo1-0/+14
2018-04-08 feat(main/templates): Add barebones single-thread viewVincent Ambo2-1/+15
2018-04-08 feat(main): Add support for Tera templatesVincent Ambo1-0/+14
Sets up the structure required to carry Tera templates in the actix-web state. The (still very barebones) index renderer has been updated to render a Tera template.