/home/arranoyd/.trash/otours_b/wp-content/themes/genesis/config/layouts.php
<?php
/**
* Genesis Framework.
*
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
* Please do all modifications in the form of a child theme.
*
* @package StudioPress\Genesis
* @author StudioPress
* @license GPL-2.0-or-later
* @link https://my.studiopress.com/themes/genesis/
*/
// Common path to default layout images.
$url = GENESIS_ADMIN_IMAGES_URL . '/layouts/';
/**
* The Layouts config. Sets the default layouts for use by Genesis.
*
* If child theme contains a `layouts.php` config, it will be used instead of this config.
*
* @since 2.8.0
*/
return array(
'content-sidebar' => array(
'label' => __( 'Content, Primary Sidebar', 'genesis' ),
'img' => $url . 'cs.gif',
'default' => is_rtl() ? false : true,
'type' => array( 'site' ),
),
'sidebar-content' => array(
'label' => __( 'Primary Sidebar, Content', 'genesis' ),
'img' => $url . 'sc.gif',
'default' => is_rtl() ? true : false,
'type' => array( 'site' ),
),
'content-sidebar-sidebar' => array(
'label' => __( 'Content, Primary Sidebar, Secondary Sidebar', 'genesis' ),
'img' => $url . 'css.gif',
'type' => array( 'site' ),
),
'sidebar-sidebar-content' => array(
'label' => __( 'Secondary Sidebar, Primary Sidebar, Content', 'genesis' ),
'img' => $url . 'ssc.gif',
'type' => array( 'site' ),
),
'sidebar-content-sidebar' => array(
'label' => __( 'Secondary Sidebar, Content, Primary Sidebar', 'genesis' ),
'img' => $url . 'scs.gif',
'type' => array( 'site' ),
),
'full-width-content' => array(
'label' => __( 'Full Width Content', 'genesis' ),
'img' => $url . 'c.gif',
'type' => array( 'site' ),
),
);