about summary refs log tree commit diff
path: root/src/frontend/templates/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* Split into different cratesVika2022-05-071-473/+0
| | | | | | | | | Templates and utility types are now separate crates to speed up compilation, linting and potential reuse/replacement. Potentially more crates could be split out/modularized, resulting in speedups, smaller binaries (whenever features are excluded) and even more reuse capabilities.
* frontend: Made endpoints optional in templatesVika2022-04-151-9/+24
| | | | | Sometimes it's cumbersome to include them, and I plan to make them embedded in the app anyway. This is my reminder to do it ASAP.
* frontend: convert to warpVika2022-03-021-18/+20
| | | | | | | | | Warp is using hyperium/http instead of http-types, so I replaced all of the http-types usage (mostly status codes) by Warp's http::StatusCode. Additionally some of the struct fields were made public to allow initialization from public code.
* Display pretty links in case there is more than one URL in a postVika2021-12-071-0/+11
|
* Migrate to Rust 2021Vika2021-12-071-4/+4
|
* Add indicators on private postsVika2021-12-071-0/+5
|
* Added support for IndieAuth client sign inVika2021-12-061-7/+36
| | | | | | | This will allow readers to view private posts intended just for them. Additionally fixed bugs in patterns due to which webmentions might not have been sent.
* Code cleanup and small bugfixing in templatesVika2021-12-051-4/+4
|
* Added author mini-cards on h-entriesVika2021-12-051-0/+11
|
* frontend: Added listing feeds to the header barVika2021-12-051-2/+6
|
* Refactored the onboarding template into its own fileVika2021-08-061-0/+396