/* *** INSTRUCTIONS *** 1. Rename this field to the name of the template position you wish to override. For example, if you want to override the Mainbody position, you will name this file mainbody.php 2. Upload this file to your server using the folder structure below, depending on which View and which Content Type (article) or List & Search Type (articles) you want to override. You will replace "seb_one" with the name of the template you are overriding (e.g. seb_minima) Admin forms: templates/seb_one/positions/article/admin/ Site forms: templates/seb_one/positions/article/site/ Intro view: templates/seb_one/positions/article/intro/ Content view: templates/seb_one/positions/article/content/ Search forms: templates/seb_one/positions/articles/search/ List view: templates/seb_one/positions/articles/list/ **You can only override a position in the list view when you use the Intermediate display mode** Item view: templates/seb_one/positions/articles/item/ *** SEBLOD TEMPLATE API - CALLING FIELDS *** Render your field with all of the attached SEBLOD markup, typography, conditional states and computation rules renderField( 'art_title' ); ?> Retrieve only the value of the field getValue( 'art_title' ); ?> Retrieve the text of the field. This is useful when you have a list field (select, checkbox, radio) and you need to get the text from each option. getText( 'art_title' ); ?> Retrieve the Link that has been applied to the field getLink( 'art_title' ); ?> Retrieve the Typography that has been applied to the field getTypo( 'art_title' ); ?> Retrieve the name of the field. In this example it would be art_title getName( 'art_title' ); ?> Retrieve the label of the field getLabel( 'art_title' ); ?> Retrieve thumbnail 1 from an image upload field. Alternatively you can use Thumb2, Thumb3 etc. getThumb1( 'art_image' ); ?> Retrieve the Form output of the field getForm( 'art_title' ); ?> */ renderField( 'art_title' ); ?> renderField( 'art_fulltext' ); ?>