diff --git a/docs/source/_layouts/documentation.blade.php b/docs/source/_layouts/documentation.blade.php index a3210fa8f..77f7825e3 100644 --- a/docs/source/_layouts/documentation.blade.php +++ b/docs/source/_layouts/documentation.blade.php @@ -41,37 +41,15 @@

Getting Started

@@ -80,92 +58,116 @@
  • Backgrounds
  • Borders
  • -
  • Border Radius
  • -
  • Container
  • -
  • Display
  • + @include('_partials.nav-links', ['links' => [ + 'border-radius' => 'Border Radius', + 'container' => 'Container', + 'display' => 'Display', + ]])
  • Flexbox
  • -
  • Floats
  • -
  • Forms
  • -
  • Grid
  • + @include('_partials.nav-links', ['links' => [ + 'floats' => 'Floats', + 'forms' => 'Forms', + 'grid' => 'Grid', + ]])
  • Interactivity
  • -
  • Lists
  • -
  • Opacity
  • -
  • Overflow
  • -
  • Positioning
  • -
  • Shadows
  • + @include('_partials.nav-links', ['links' => [ + 'lists' => 'Lists', + 'opacity' => 'Opacity', + 'overflow' => 'Overflow', + 'positioning' => 'Positioning', + 'shadows' => 'Shadows', + ]])
  • Sizing
  • -
  • Spacing
  • -
  • SVG
  • + @include('_partials.nav-links', ['links' => [ + 'spacing' => 'Spacing', + 'svg' => 'SVG', + ]])
  • Typography
  • -
  • Vertical Alignment
  • -
  • Visibility
  • -
  • Z-Index
  • + @include('_partials.nav-links', ['links' => [ + 'vertical-alignment' => 'Vertical Alignment', + 'visibility' => 'Visibility', + 'z-index' => 'Z-Index', + ]])

    Examples

    diff --git a/docs/source/_partials/nav-links.blade.php b/docs/source/_partials/nav-links.blade.php new file mode 100644 index 000000000..d6d282572 --- /dev/null +++ b/docs/source/_partials/nav-links.blade.php @@ -0,0 +1,7 @@ +@foreach ($links as $link => $title) +
  • + + {{ $title }} + +
  • +@endforeach