@@ -58,7 +58,9 @@ The webcomponent uses a shadow dom and encapsulate the styles. So it will not us
### Slots
Slots provides the possibility to override some part of the webcomponent. The histhub-widget provides a `title` and a `defaut` slot.
#### Heading (slot)
You can change the Heading of the widget with the `title` slot. This slot will override the default title. In allmost all examples we use this slot to change the title. If you override a slot your site css rules applies for this element. Example #6 changes the color of the heading
You can change the Heading of the widget with the `title` slot. This slot will override the default title. In almost all examples we use this slot to change the title. If you override a slot your site css rules applies for this element. Example #6 changes the color of the heading
#### Credits
You can change the `credits` in the corresponding slot. Please make sure you mention our work. In the example
#### Default Slot
If you want to display some additional text beneath the links you can use the default slot. Just put the content inside the histhub-widget element. Example #7 adds additional information under the links
<slot name="credits"><p class="credits">Links powered by <a href="//histhub.ch" target="_blank" title="Histhub">histHub</a> - die Vernetzungsinitiative des Consortium Historicum</p></slot>