Seditio Source
Root |
./othercms/b2evolution_7.2.3/skins_fallback_v5/_mobile_footer.inc.php
<?php
/**
 * This is the mobile footer include template.
 *
 * For a quick explanation of b2evo 2.0 skins, please start here:
 * {@link http://b2evolution.net/man/skin-development-primer}
 *
 * This is meant to be included in a page template.
 *
 * @package evoskins
 */
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );

?>
<div id="mobile_footer" class="mobile_footer">

    <ul>
    <?php
       
// ------------------------- "Mobile Footer" CONTAINER EMBEDDED HERE --------------------------
        // Display container contents:
       
skin_container( NT_('Mobile: Footer'), array(
               
// The following (optional) params will be used as defaults for widgets included in this container:
                // This will enclose each widget in a block:
               
'block_start' => '<li class="widget $wi_class$">',
               
'block_end' => '</li>',
               
// This will enclose the title of each widget:
               
'block_title_start' => '',
               
'block_title_end' => '',
               
// If a widget displays a list, this will enclose that list:
               
'list_start' => '<ul>',
               
'list_end' => '</ul>',
               
// This will enclose each item in a list:
               
'item_start' => '<li>',
               
'item_end' => '</li>',
               
// This will enclose sub-lists in a list:
               
'group_start' => '<ul>',
               
'group_end' => '</ul>',
               
// This will enclose (foot)notes:
               
'notes_start' => '<div class="notes">',
               
'notes_end' => '</div>',
            ) );
       
// ----------------------------- END OF "Mobile Footer" CONTAINER -----------------------------
   
?>
   </ul>

</div>