--- title: 作者归档 description: author.html - /authors/:name --- import UserVo from "../vo/UserVo.md" import CategoryVo from "../vo/CategoryVo.md" import TagVo from "../vo/TagVo.md" import ContributorVo from "../vo/ContributorVo.md" import ListedPostVo from "../vo/ListedPostVo.md" ## 路由信息 - 模板路径:`/templates/author.html` - 访问路径:`/authors/:name` ## 变量 ### author #### 变量类型 [#UserVo](#uservo) ### posts #### 变量类型 [#UrlContextListResult](#urlcontextlistresultlistedpostvo) #### 示例 ```html title="/templates/author.html"

上一页 下一页
``` ## 类型定义 ### UserVo ### CategoryVo ### TagVo ### ContributorVo ### ListedPostVo - [#CategoryVo](#categoryvo) - [#TagVo](#tagvo) - [#ContributorVo](#contributorvo) ### UrlContextListResult ```json title="UrlContextListResult" { "page": 0, // 当前页码 "size": 0, // 每页条数 "total": 0, // 总条数 "items": "List<#ListedPostVo>", // 文章列表数据 "first": true, // 是否为第一页 "last": true, // 是否为最后一页 "hasNext": true, // 是否有下一页 "hasPrevious": true, // 是否有上一页 "totalPages": 0, // 总页数 "nextUrl": "string", // 下一页链接 "prevUrl": "string" // 上一页链接 } ``` - [#ListedPostVo](#listedpostvo)