mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-14 22:42:49 +08:00
7 lines
213 B
PHP
7 lines
213 B
PHP
![]() |
@if (count($pages) > 0)
|
||
|
<ul class="contents">
|
||
|
@foreach($pages as $page)
|
||
|
<li><a href="#page-{{$page->id}}">{{ $page->name }}</a></li>
|
||
|
@endforeach
|
||
|
</ul>
|
||
|
@endif
|