47 lines
1.8 KiB
PHP
47 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Front-page contact section.
|
|
*
|
|
* @package Gustavo_Portfolio
|
|
*/
|
|
|
|
$gustavoo_contact_form_id = absint( gustavoo_portfolio_get_setting( 'contact_form_id' ) );
|
|
$gustavoo_email = sanitize_email( (string) gustavoo_portfolio_get_setting( 'email' ) );
|
|
$gustavoo_privacy_url = get_privacy_policy_url();
|
|
?>
|
|
|
|
<section id="contato" class="section section--contact" aria-labelledby="contact-title">
|
|
<div class="site-shell contact-panel">
|
|
<div class="contact-panel__content">
|
|
<p class="eyebrow"><?php echo esc_html( gustavoo_portfolio_get_setting( 'contact_eyebrow' ) ); ?></p>
|
|
<h2 id="contact-title" class="section__title"><?php echo esc_html( gustavoo_portfolio_get_setting( 'contact_heading' ) ); ?></h2>
|
|
<p class="contact-panel__description"><?php echo esc_html( gustavoo_portfolio_get_setting( 'contact_text' ) ); ?></p>
|
|
|
|
<?php if ( $gustavoo_email ) : ?>
|
|
<ul class="contact-list">
|
|
<?php if ( $gustavoo_email ) : ?>
|
|
<li><span><?php esc_html_e( 'E-mail', 'gustavoo-portfolio' ); ?></span><a href="<?php echo esc_url( 'mailto:' . $gustavoo_email ); ?>"><?php echo esc_html( antispambot( $gustavoo_email ) ); ?></a></li>
|
|
<?php endif; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
|
|
<?php gustavoo_portfolio_social_links( 'social-links social-links--contact' ); ?>
|
|
</div>
|
|
|
|
<div class="contact-panel__form">
|
|
<?php gustavoo_portfolio_the_fluent_form( $gustavoo_contact_form_id, 'contact' ); ?>
|
|
<?php if ( $gustavoo_privacy_url ) : ?>
|
|
<p class="form-privacy">
|
|
<?php
|
|
printf(
|
|
/* translators: %s: privacy policy URL. */
|
|
wp_kses_post( __( 'Ao enviar, você concorda com o tratamento dos dados conforme a <a href="%s">Política de Privacidade</a>.', 'gustavoo-portfolio' ) ),
|
|
esc_url( $gustavoo_privacy_url )
|
|
);
|
|
?>
|
|
</p>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</section>
|