Deprecated: pathinfo(): Passing null to parameter #1 ($path) of type string is deprecated in /html/typo3.andreas-huber.at/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php on line 84
Um schöne Teaser der Unterseiten in Typo3 anzeigen zu können kann man mittels Typoscript eine neue Darstellung des Menüs „Menü der Unterseiten inkl. Abstract“ erstellen. So ist eine Darstellung der Unterseiten mit Titel, Kurzbeschreibung und Bild (jeweils aus dem Seitenheader der Unterseiten) möglich:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
###################################################### # MENÜ DER UNTERSEITEN MIT BILD AUS PAGEHEADER ###################################################### tt_content.menu { 20 { 10 = HMENU 10 { special = directory #special = list #special.value.field = pages 1 = TMENU 1.wrap = | 1.NO { doNotLinkIt = 1 stdWrap.cObject = COA stdWrap.cObject { 10 = FILES 10 { references { table = pages fieldName = media } renderObj = IMAGE renderObj { file { width = 80c height = 65c maxW = 81c maxH = 66c # height 263c # width 155c import.data = file:current:publicUrl } altText.field = title imageLinkWrap = 1 imageLinkWrap { enable = 1 typolink.parameter.field = uid } } stdWrap.wrap = <div class="row"><div class="col-md-2">|</div> } 20 = TEXT 20.field = title 20.typolink.parameter.field = uid 20.wrap = <div class="col-md-10"><h3 class="subpage-teaser">|</h3> 30 = TEXT 30.field = abstract 30.wrap = <p>|</p></div></div> } } } } } |