Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

PlatzhalterBeschreibung

authorName

Der Autorenname aus dem PS.Content Profil.
authorDescriptionDie Autorenbeschreibung aus PS.Content. (optional)
authorImageUrlDas Autorenasset aus PS.Content. (optional)
authorImageUrlWithPresetDas 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
languagexml
firstline1
titleAutorenprofil
linenumberstrue
collapsetrue
<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.

...