web: show tag list in all modalities. WIP

This commit is contained in:
2024-07-29 08:48:44 -07:00
parent 605af13a37
commit d5fa89b38c
4 changed files with 105 additions and 97 deletions

View File

@@ -6,7 +6,10 @@ use crate::{
api::urls,
graphql::front_page_query::*,
state::{Context, Model, Msg},
view::{self, human_age, pretty_authors, search_toolbar, set_title, tags_chiclet, view_header},
view::{
self, human_age, pretty_authors, search_toolbar, set_title, tags_chiclet, view_header,
view_tags,
},
};
pub(super) fn view(model: &Model) -> Node<Msg> {
@@ -37,6 +40,7 @@ pub(super) fn view(model: &Model) -> Node<Msg> {
view_header(&model.query, &model.refreshing_state),
content,
view_header(&model.query, &model.refreshing_state),
view_tags(model),
]
}