...
Platzhalter | Beschreibung |
---|---|
authorName | Der Autorenname aus dem PS.Content Profil. |
authorDescription | Die Autorenbeschreibung aus PS.Content. (optional) |
authorImageUrl | Das Autorenasset aus PS.Content. (optional) |
authorImageUrlWithPreset | Das Autorenasset aus PS.Content. (optional) Preset: Small4x3 |
authorHasImage | 'true', wenn der Autor ein Asset hinterlegt hat. |
authorHasDescription | 'true', wenn der Autor eine Beschreibung hat. |
Beispiele für HTML Komponenten
Codeblock | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
<div class="container">
<h1>Alle Artikel von [[${authorName}]]</h1>
[# th:if="${authorHasDescription}"]
<div style="display:flex;gap:var(--pscp-space-m);">
[# th:if="${authorHasImage}"]
<img style="border-radius: 50%;" src="[[${authorImageUrl}]]?width=150&height=150" alt="Autorenportrait" width="150px" height="150px">
[/]
<div style="align-items: center;display: flex;">
<div>[(${authorDescription})]</div>
</div>
</div>
[/]
</div>
<hr/> |
Komponente: Abstand
Definiert einen Abstand zu einer anderen Komponente. Abstände addieren sich nicht.
...