Files
theme-earth/templates/modules/sidebar.html
Anye 0d1176a573 fix: fix sidebar content scrolling issue in article table of contents (#156)
修复文章侧边栏中目录移动问题

```release-note
None
```
2024-07-27 03:35:42 +00:00

11 lines
418 B
HTML

<aside th:fragment="sidebar (prepend)" class="z-0 hidden w-72 flex-none flex-col gap-6 md:flex">
<th:block th:with="widgets = ${theme.config.sidebar.widgets} ">
<th:block th:if="${prepend != null}">
<th:block th:replace="${prepend}" />
</th:block>
<th:block th:each="widget : ${widgets}">
<th:block th:replace="~{'modules/widgets/'+${widget.value}}" />
</th:block>
</th:block>
</aside>