| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversionx/wp-content/themes/stargaze/front-page/ |
Upload File : |
<div class="front_page_section front_page_section_about<?php
$stargaze_scheme = stargaze_get_theme_option( 'front_page_about_scheme' );
if ( ! empty( $stargaze_scheme ) && ! stargaze_is_inherit( $stargaze_scheme ) ) {
echo ' scheme_' . esc_attr( $stargaze_scheme );
}
echo ' front_page_section_paddings_' . esc_attr( stargaze_get_theme_option( 'front_page_about_paddings' ) );
if ( stargaze_get_theme_option( 'front_page_about_stack' ) ) {
echo ' sc_stack_section_on';
}
?>"
<?php
$stargaze_css = '';
$stargaze_bg_image = stargaze_get_theme_option( 'front_page_about_bg_image' );
if ( ! empty( $stargaze_bg_image ) ) {
$stargaze_css .= 'background-image: url(' . esc_url( stargaze_get_attachment_url( $stargaze_bg_image ) ) . ');';
}
if ( ! empty( $stargaze_css ) ) {
echo ' style="' . esc_attr( $stargaze_css ) . '"';
}
?>
>
<?php
// Add anchor
$stargaze_anchor_icon = stargaze_get_theme_option( 'front_page_about_anchor_icon' );
$stargaze_anchor_text = stargaze_get_theme_option( 'front_page_about_anchor_text' );
if ( ( ! empty( $stargaze_anchor_icon ) || ! empty( $stargaze_anchor_text ) ) && shortcode_exists( 'trx_sc_anchor' ) ) {
echo do_shortcode(
'[trx_sc_anchor id="front_page_section_about"'
. ( ! empty( $stargaze_anchor_icon ) ? ' icon="' . esc_attr( $stargaze_anchor_icon ) . '"' : '' )
. ( ! empty( $stargaze_anchor_text ) ? ' title="' . esc_attr( $stargaze_anchor_text ) . '"' : '' )
. ']'
);
}
?>
<div class="front_page_section_inner front_page_section_about_inner
<?php
if ( stargaze_get_theme_option( 'front_page_about_fullheight' ) ) {
echo ' stargaze-full-height sc_layouts_flex sc_layouts_columns_middle';
}
?>
"
<?php
$stargaze_css = '';
$stargaze_bg_mask = stargaze_get_theme_option( 'front_page_about_bg_mask' );
$stargaze_bg_color_type = stargaze_get_theme_option( 'front_page_about_bg_color_type' );
if ( 'custom' == $stargaze_bg_color_type ) {
$stargaze_bg_color = stargaze_get_theme_option( 'front_page_about_bg_color' );
} elseif ( 'scheme_bg_color' == $stargaze_bg_color_type ) {
$stargaze_bg_color = stargaze_get_scheme_color( 'bg_color', $stargaze_scheme );
} else {
$stargaze_bg_color = '';
}
if ( ! empty( $stargaze_bg_color ) && $stargaze_bg_mask > 0 ) {
$stargaze_css .= 'background-color: ' . esc_attr(
1 == $stargaze_bg_mask ? $stargaze_bg_color : stargaze_hex2rgba( $stargaze_bg_color, $stargaze_bg_mask )
) . ';';
}
if ( ! empty( $stargaze_css ) ) {
echo ' style="' . esc_attr( $stargaze_css ) . '"';
}
?>
>
<div class="front_page_section_content_wrap front_page_section_about_content_wrap content_wrap">
<?php
// Caption
$stargaze_caption = stargaze_get_theme_option( 'front_page_about_caption' );
if ( ! empty( $stargaze_caption ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
?>
<h2 class="front_page_section_caption front_page_section_about_caption front_page_block_<?php echo ! empty( $stargaze_caption ) ? 'filled' : 'empty'; ?>"><?php echo wp_kses( $stargaze_caption, 'stargaze_kses_content' ); ?></h2>
<?php
}
// Description (text)
$stargaze_description = stargaze_get_theme_option( 'front_page_about_description' );
if ( ! empty( $stargaze_description ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
?>
<div class="front_page_section_description front_page_section_about_description front_page_block_<?php echo ! empty( $stargaze_description ) ? 'filled' : 'empty'; ?>"><?php echo wp_kses( wpautop( $stargaze_description ), 'stargaze_kses_content' ); ?></div>
<?php
}
// Content
$stargaze_content = stargaze_get_theme_option( 'front_page_about_content' );
if ( ! empty( $stargaze_content ) || ( current_user_can( 'edit_theme_options' ) && is_customize_preview() ) ) {
?>
<div class="front_page_section_content front_page_section_about_content front_page_block_<?php echo ! empty( $stargaze_content ) ? 'filled' : 'empty'; ?>">
<?php
$stargaze_page_content_mask = '%%CONTENT%%';
if ( strpos( $stargaze_content, $stargaze_page_content_mask ) !== false ) {
$stargaze_content = preg_replace(
'/(\<p\>\s*)?' . $stargaze_page_content_mask . '(\s*\<\/p\>)/i',
sprintf(
'<div class="front_page_section_about_source">%s</div>',
apply_filters( 'the_content', get_the_content() )
),
$stargaze_content
);
}
stargaze_show_layout( $stargaze_content );
?>
</div>
<?php
}
?>
</div>
</div>
</div>