frontmatter.blade.php 476 B

123456789101112131415161718192021
  1. title: {{ $settings['title'] }}
  2. language_tabs:
  3. @foreach($settings['languages'] as $language)
  4. - {{ $language }}
  5. @endforeach
  6. includes:
  7. - "./prepend.md"
  8. - "./authentication.md"
  9. - "./groups/*"
  10. - "./errors.md"
  11. - "./append.md"
  12. logo: {{ $settings['logo'] ?? false }}
  13. toc_footers:
  14. @if($showPostmanCollectionButton)
  15. - <a href="{{ $postmanCollectionLink }}">View Postman Collection</a>
  16. @endif
  17. - <a href='http://github.com/knuckleswtf/scribe'>Documentation powered by Scribe ✍</a>