# give/4.16.1/src/Views/Form/Templates/Sequoia/sections/introduction.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.1. 43 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.1/code/src/Views/Form/Templates/Sequoia/sections/introduction.php
- Raw: https://pluginprobe.com/plugins/give/4.16.1/raw/src/Views/Form/Templates/Sequoia/sections/introduction.php
- Modified: 2021-11-23T23:55:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.1/code/src/Views/Form/Templates/Sequoia/sections/introduction.php#L10-L20`.

```php
<?php

use Give\Helpers\Form\Template\Utils\Frontend as FrontendFormTemplateUtils;

$formInfo = get_post(FrontendFormTemplateUtils::getFormId());

/* @var \Give\Form\Template $formTemplate */
$formTemplate = Give()->templates->getTemplate();

// Get headline and description
$headline = $formTemplate->getFormHeading($formInfo->ID);
$description = $formTemplate->getFormExcerpt($formInfo->ID);
$image = $formTemplate->getFormFeaturedImage($formInfo->ID);
?>

<div class="give-section introduction">
    <h2 class="headline">
        <?php
        echo $headline; ?>
    </h2>
    <?php
    if ( ! empty($description)) : ?>
        <div class="seperator"></div>
        <p class="description">
            <?php
            echo $description; ?>
        </p>
    <?php
    endif; ?>
    <?php
    if ( ! empty($image)) : ?>
        <div class="image">
            <img src="<?php
            echo $image; ?>" />
        </div>
    <?php
    endif; ?>

    <?php
    require 'income-stats.php';
    require 'progress-bar.php';
    ?>

```
