Logotype
Displays a grid of logotypes.
Logotypegrid
<!-- logotypegrid.blade.php -->
<div class="c-logotypegrid" data-uid="682b48f25b917">
<a class="c-link c-logotypegrid__link" id="" href="https://helsingborg.se" target="_top" data-uid="682b48f25baa9">
<!-- logotype.blade.php -->
<figure class="c-logotype c-logotypegrid__logo ripple ripple--before" data-uid="682b48f25ba3a">
<img src="/assets/img/logotype.svg" alt="Alt text" class="c-logotype__image" />
</figure>
</a>
<a class="c-link c-logotypegrid__link" id="" href="https://helsingborg.se" target="_top" data-uid="682b48f25bb33">
<!-- logotype.blade.php -->
<figure class="c-logotype c-logotypegrid__logo ripple ripple--before" data-uid="682b48f25baff">
<img src="/assets/img/logotype.svg" alt="Alt text" class="c-logotype__image" />
</figure>
</a>
<a class="c-link c-logotypegrid__link" id="" href="https://helsingborg.se" target="_top" data-uid="682b48f25bb98">
<!-- logotype.blade.php -->
<figure class="c-logotype c-logotypegrid__logo ripple ripple--before" data-uid="682b48f25bb69">
<img src="/assets/img/logotype.svg" alt="Alt text" class="c-logotype__image" />
</figure>
</a>
<span class="c-link c-logotypegrid__link" id="" target="_top" data-uid="682b48f25bbf6">
<!-- logotype.blade.php -->
<figure class="c-logotype c-logotypegrid__logo ripple ripple--before" data-uid="682b48f25bbcb">
<img src="/assets/img/logotype.svg" alt="Alt text" class="c-logotype__image" />
</figure>
</span>
</div>
@logotypegrid(['items'=> [
[
'logo' => '/assets/img/logotype.svg',
'alt' => 'Alt text',
'url' => 'https://helsingborg.se'
],
[
'logo' => '/assets/img/logotype.svg',
'alt' => 'Alt text',
'url' => 'https://helsingborg.se'
],
[
'logo' => '/assets/img/logotype.svg',
'alt' => 'Alt text',
'url' => 'https://helsingborg.se'
],
[
'logo' => '/assets/img/logotype.svg',
'alt' => 'Alt text'
]
]])
@endlogotypegrid
Blade component parameters
Key | Default value | Type | Available values | Description |
items | [] | array | - | A list of items, containing: src, alt, url(optional) |
id | string | - | The DOM id of the component. | |
classList | [] | array | - | Array containing wrapping classes array |
attributeList | [] | array | - | Array containing keys and values rendered as attributes |
containerAware | false | boolean | true/false | Makes the component container aware. Appends modifiers --size--xs/sm/md/lg to the component. |