HEX
Server: Apache
System: Linux vpshost11508.publiccloud.com.br 5.15.179-grsec-vpshost-10.lc.el8.x86_64 #1 SMP Mon Apr 7 12:04:45 -03 2025 x86_64
User: wicomm2 (10002)
PHP: 8.3.0
Disabled: apache_child_terminate,dl,escapeshellarg,escapeshellcmd,exec,link,mail,openlog,passthru,pcntl_alarm,pcntl_exec,pcntl_fork,pcntl_get_last_error,pcntl_getpriority,pcntl_setpriority,pcntl_signal,pcntl_signal_dispatch,pcntl_sigprocmask,pcntl_sigtimedwait,pcntl_sigwaitinfo,pcntl_strerror,pcntl_wait,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,php_check_syntax,php_strip_whitespace,popen,proc_close,proc_open,shell_exec,symlink,system
Upload Files
File: /home/storage/5/78/dd/wicomm2/public_html/pages/aboutUs.php
<?php
//template name: Sobre nós

get_header();


$section_main = get_field('secao_principal');
$section_main_title = $section_main['titulo'];
$section_main_text = $section_main['texto'];

$section_pink = get_field('secao_rosa');
$section_pink_title = $section_pink['titulo'];
$section_pink_text = $section_pink['texto'];
$section_pink_img = $section_pink['imagem'];

$section_white = get_field('secao_branca');
$section_white_title = $section_white['titulo'];
$section_white_text = $section_white['texto'];
$section_white_img = $section_white['imagem'];

$section_black = get_field('secao_preta');
$section_black_title = $section_black['titulo'];
$section_black_text = $section_black['texto'];
$section_black_img = $section_black['imagem'];
?>

<main class="wc-about">
  <section class="wc-about-main">
    <h1><?php echo $section_main_title ?></h1>
    <p><?php echo $section_main_text ?></p>
  </section>

  <section class="wc-about-pink">
    <div class="wc-about__content">
      <h2><?php echo $section_pink_title ?></h2>
      <p><?php echo $section_pink_text ?></p>
    </div>

    <img src="<?php echo $section_pink_img ?>" />
  </section>

  <section class="wc-about-white">
    <img src="<?php echo $section_white_img ?>" />
    <div class="wc-about__content">
      <h2><?php echo $section_white_title ?></h2>
      <p><?php echo $section_white_text ?></p>
    </div>
  </section>

  <section class="wc-about-black">
    <div class="wc-about__content">
      <h2><?php echo $section_black_title ?></h2>
      <p><?php echo $section_black_text ?></p>
    </div>

    <img src="<?php echo $section_black_img ?>" />
  </section>

  <?php if (!wp_is_mobile()): ?>
    <section class="wc-about-clients">
      <h2>Nossos clientes</h2>

      <?php get_template_part('template-parts/components/grid-clients-moc'); ?>

      <div class="wc-about-clients__button">
        <a class="wc-button-link-pink" href="/contato">
          <span>Fale conosco</span>
        </a>
      </div>
    </section>
  <?php endif; ?>

  <div class="wc-limit-screen wc-service-content-wp">
    <?php the_content(); ?>
  </div>
</main>

<?php get_footer(); ?>