?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/modules/title/templates/



?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/modules/title

?? Viewing: title.php

<?php do_action('edgtf_quadric_before_page_title'); ?>
<?php if($show_title_area) { ?>

    <div class="edgtf-title <?php echo edgtf_quadric_title_classes(); ?>" style="<?php echo esc_attr($title_height); echo esc_attr($title_background_color); echo esc_attr($title_background_image); ?>" data-height="<?php echo esc_attr(intval(preg_replace('/[^0-9]+/', '', $title_height), 10));?>" <?php echo esc_attr($title_background_image_width); ?>>
        <div class="edgtf-title-image"><?php if($title_background_image_src != ""){ ?><img src="<?php echo esc_url($title_background_image_src); ?>" alt="&nbsp;" /> <?php } ?></div>
        <div class="edgtf-title-holder" <?php edgtf_quadric_inline_style($title_holder_height); ?>>
            <div class="edgtf-container clearfix">
                <div class="edgtf-container-inner">
                    <div class="edgtf-title-subtitle-holder" style="<?php echo esc_attr($title_subtitle_holder_padding); ?>">
                        <div class="edgtf-title-subtitle-holder-inner">
                        <?php switch ($type){
                            case 'standard': ?>
                                <h1 <?php edgtf_quadric_inline_style($title_color); ?>><span><?php edgtf_quadric_title_text(); ?></span></h1>
								<?php if(edgtf_quadric_core_installed() && $enable_separator){
									echo edgtf_quadric_get_zig_zag_html($separator_args);
								 } ?>
                                <?php if($has_subtitle){ ?>
                                    <span class="edgtf-subtitle" <?php edgtf_quadric_inline_style($subtitle_color); ?>><span><?php edgtf_quadric_subtitle_text(); ?></span></span>
                                <?php } ?>
                                <?php if($enable_breadcrumbs){ ?>
                                    <div class="edgtf-breadcrumbs-holder"> <?php edgtf_quadric_custom_breadcrumbs(); ?></div>
                                <?php } ?>
                            <?php break;
                            case 'breadcrumb': ?>
                                <div class="edgtf-breadcrumbs-holder"> <?php edgtf_quadric_custom_breadcrumbs(); ?></div>
                            <?php break;
                            }
                            ?>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

<?php } ?>
<?php do_action('edgtf_quadric_after_page_title'); ?>


??

??