-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update components
- Loading branch information
Showing
34 changed files
with
135 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| View Name | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Choose a view to display when Breadcrumbs::render() is called. | ||
| Built in templates are: | ||
| | ||
| - 'breadcrumbs::bootstrap5' - Bootstrap 5 | ||
| - 'breadcrumbs::bootstrap4' - Bootstrap 4 | ||
| - 'breadcrumbs::bulma' - Bulma | ||
| - 'breadcrumbs::foundation6' - Foundation 6 | ||
| - 'breadcrumbs::json-ld' - JSON-LD Structured Data | ||
| - 'breadcrumbs::materialize' - Materialize | ||
| - 'breadcrumbs::tailwind' - Tailwind CSS | ||
| - 'breadcrumbs::uikit' - UIkit | ||
| | ||
| Or a custom view, e.g. '_partials/breadcrumbs'. | ||
| | ||
*/ | ||
|
||
'view' => 'breadcrumbs::bootstrap5', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Breadcrumbs File(s) | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The file(s) where breadcrumbs are defined. e.g. | ||
| | ||
| - base_path('routes/breadcrumbs.php') | ||
| - glob(base_path('breadcrumbs/*.php')) | ||
| | ||
*/ | ||
|
||
'files' => base_path('routes/breadcrumbs.php'), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Exceptions | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Determine when to throw an exception. | ||
| | ||
*/ | ||
|
||
// When route-bound breadcrumbs are used but the current route doesn't have a name (UnnamedRouteException) | ||
'unnamed-route-exception' => true, | ||
|
||
// When route-bound breadcrumbs are used and the matching breadcrumb doesn't exist (InvalidBreadcrumbException) | ||
'missing-route-bound-breadcrumb-exception' => true, | ||
|
||
// When a named breadcrumb is used but doesn't exist (InvalidBreadcrumbException) | ||
'invalid-named-breadcrumb-exception' => true, | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Classes | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Subclass the default classes for more advanced customisations. | ||
| | ||
*/ | ||
|
||
// Manager | ||
'manager-class' => Diglactic\Breadcrumbs\Manager::class, | ||
|
||
// Generator | ||
'generator-class' => Diglactic\Breadcrumbs\Generator::class, | ||
|
||
]; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"/js/app.js": "/js/app.js?id=1072f3bf5674b0bbd5892213a7f75ff1", | ||
"/css/app.css": "/css/app.css?id=bf846dd8edf2f05e55bd3e13cc3a439d", | ||
"/css/fitzwilliam.css": "/css/fitzwilliam.css?id=77a35cfaed6c45d6581e734762fb43ad" | ||
"/css/fitzwilliam.css": "/css/fitzwilliam.css?id=56a205941c75e7705762b6f1a1eee6bb" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,7 +171,7 @@ h3, h2 { | |
font-weight: 500; | ||
} | ||
|
||
h3 { | ||
h3,h2 { | ||
font-size: 1.25rem; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.