pub type Theme {
Theme(
layout: fn(String, String) -> String,
post_view: fn(post.Post) -> String,
archive_view: fn(List(post.Post)) -> String,
)
}
Constructors
-
Theme(
layout: fn(String, String) -> String,
post_view: fn(post.Post) -> String,
archive_view: fn(List(post.Post)) -> String,
)