Document illustration badges
This commit is contained in:
parent
727f5dd32b
commit
81c61965c4
|
@ -15,3 +15,10 @@ This list is not exhaustive, nor does it mean that these are being worked on.
|
|||
- No search
|
||||
- No ability to login
|
||||
- No ability to see comments or like counts
|
||||
|
||||
# Miscellaneous Information
|
||||
|
||||
In a page containing a list of illustrations (e.g. a user's illustrations page
|
||||
or a search results page), illustrations containing multiple images will have a
|
||||
badge indicating the amount of images inside. Illustrations that are marked as
|
||||
being AI-generated will have a badge with a red background.
|
||||
|
|
|
@ -39,6 +39,12 @@ void home_route(const httplib::Request& req, httplib::Response& res, const Confi
|
|||
Element("li", {"Can only search for newest and oldest illustrations"}),
|
||||
Element("li", {"No ability to login"}),
|
||||
Element("li", {"No ability to see comments or like counts"}),
|
||||
}),
|
||||
Element("h2", {"Miscellaneous Information"}),
|
||||
Element("p", {
|
||||
"In a page containing a list of illustrations (e.g. a user's illustrations page or a search results page), "
|
||||
"illustrations containing multiple images will have a badge indicating the amount of images inside. "
|
||||
"Illustrations that are marked as being AI-generated will have a badge with a red background."
|
||||
})
|
||||
});
|
||||
serve(req, res, config, "Pixwhile", std::move(body));
|
||||
|
|
Loading…
Reference in New Issue