'jsform', 'class'=>'tab-content mt-1' )); // Token CSRF echo Bootstrap::formInputHidden(array( 'name'=>'tokenCSRF', 'value'=>$security->getTokenCSRF() )); // Parent echo Bootstrap::formInputHidden(array( 'name'=>'parent', 'value'=>'' )); // UUID echo Bootstrap::formInputHidden(array( 'name'=>'uuid', 'value'=>$pages->generateUUID() )); // Status = published, draft, sticky, static echo Bootstrap::formInputHidden(array( 'name'=>'type', 'value'=>'published' )); // Cover image echo Bootstrap::formInputHidden(array( 'name'=>'coverImage', 'value'=>'' )); // Content echo Bootstrap::formInputHidden(array( 'name'=>'content', 'value'=>'' )); ?>
g('Cancel') ?>

p('Cover image') ?>

coverImagePreview $L->g('External Cover Image'))); echo Bootstrap::formInputTextBlock(array( 'name'=>'externalCoverImage', 'placeholder'=>"https://", 'value'=>'', 'tip'=>$L->g('Set a cover image from external URL, such as a CDN or some server dedicated for images.') )); ?>

p('Advanced') ?>

'', 'label'=>$L->g('User'), 'placeholder'=>'', 'value'=>$login->username(), 'tip'=>'', 'disabled'=>true )); // Date echo Bootstrap::formInputText(array( 'name'=>'date', 'label'=>$L->g('Date'), 'placeholder'=>'', 'value'=>Date::current(DB_DATE_FORMAT), 'tip'=>$L->g('date-format-format') )); // Type echo Bootstrap::formSelect(array( 'name'=>'typeTMP', 'label'=>$L->g('Type'), 'selected'=>'', 'options'=>array( 'published'=>'- '.$L->g('Default').' -', 'sticky'=>$L->g('Sticky'), 'static'=>$L->g('Static') ), 'tip'=>'' )); // Parent echo Bootstrap::formInputText(array( 'name'=>'parentTMP', 'label'=>$L->g('Parent'), 'placeholder'=>'', 'tip'=>$L->g('Start typing a page title to see a list of suggestions.'), 'value'=>'' )); // Position echo Bootstrap::formInputText(array( 'name'=>'position', 'label'=>$L->g('Position'), 'tip'=>$L->g('Field used when ordering content by position'), 'value'=>$pages->nextPositionNumber() )); // Template echo Bootstrap::formInputText(array( 'name'=>'template', 'label'=>$L->g('Template'), 'placeholder'=>'', 'value'=>'', 'tip'=>$L->g('Write a template name to filter the page in the theme and change the style of the page.') )); // Tags echo Bootstrap::formInputText(array( 'name'=>'tags', 'label'=>$L->g('Tags'), 'placeholder'=>'', 'tip'=>$L->g('Write the tags separated by comma') )); echo Bootstrap::formTitle(array('title'=>$L->g('SEO'))); // Friendly URL echo Bootstrap::formInputText(array( 'name'=>'slug', 'tip'=>$L->g('URL associated with the content'), 'label'=>$L->g('Friendly URL'), 'placeholder'=>$L->g('Leave empty for autocomplete by Bludit.') )); echo Bootstrap::formCheckbox(array( 'name'=>'noindex', 'label'=>'Robots', 'labelForCheckbox'=>$L->g('apply-code-noindex-code-to-this-page'), 'placeholder'=>'', 'class'=>'mt-4', 'checked'=>false, 'tip'=>$L->g('This tells search engines not to show this page in their search results.') )); echo Bootstrap::formCheckbox(array( 'name'=>'nofollow', 'label'=>'', 'labelForCheckbox'=>$L->g('apply-code-nofollow-code-to-this-page'), 'placeholder'=>'', 'checked'=>false, 'tip'=>$L->g('This tells search engines not to follow links on this page.') )); echo Bootstrap::formCheckbox(array( 'name'=>'noarchive', 'label'=>'', 'labelForCheckbox'=>$L->g('apply-code-noarchive-code-to-this-page'), 'placeholder'=>'', 'checked'=>false, 'tip'=>$L->g('This tells search engines not to save a cached copy of this page.') )); ?>