mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04: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
|