# fluent-community/2.6.0/app/Views/headless_page.php

FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS &amp; Online Courses, version 2.6.0. 106 lines.

- Page: https://pluginprobe.com/plugins/fluent-community/2.6.0/code/app/Views/headless_page.php
- Raw: https://pluginprobe.com/plugins/fluent-community/2.6.0/raw/app/Views/headless_page.php
- Modified: 2026-06-11T08:52:16+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/fluent-community/2.6.0/code/app/Views/headless_page.php#L10-L20`.

```php
<?php if (!defined('ABSPATH')) exit; // Exit if accessed directly ?>
<?php
/**
 * @var $title string
 * @var $description string
 * @var $url string
 * @var $featured_image string
 * @var $css_files array
 * @var $js_files array
 * @var $js_vars array
 * @var $scope string
 */
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
    <title><?php echo esc_attr($title); ?></title>
    <meta charset="<?php bloginfo('charset'); ?>">
    <meta name="description" content="<?php echo esc_attr($description); ?>">
    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover,interactive-widget=resizes-content"/>
    <?php
    if (!empty($load_wp)) :
        wp_head();
    else: ?>
        <meta name="mobile-web-app-capable" content="yes">
        <meta name="robots" content="noindex">
        <link rel="icon" type="image/x-icon" href="<?php echo esc_url(get_site_icon_url()); ?>"/>
        <meta property="og:type" content="website">
        <meta property="og:url" content="<?php echo esc_url($url); ?>">
        <meta property="og:site_name" content="<?php bloginfo('name'); ?>">
        <meta property="og:title" content="<?php echo esc_attr($og_title); ?>">
        <meta property="og:description" content="<?php echo esc_attr($description); ?>">
    <?php endif; ?>

    <?php if ($featured_image): ?>
        <meta property="og:image" content="<?php echo esc_url($featured_image); ?>"/>
    <?php endif; ?>

    <style>
        .fluent_com, .fcom_full_layout {
            display: block;
            width: 100%;
        }
    </style>

    <?php do_action('fluent_community/headless/head_early', $scope); ?>

    <?php foreach ($css_files as $fluentCommunityCssFile): ?>
        <link rel="stylesheet" href="<?php echo esc_url($fluentCommunityCssFile); ?>?version=<?php echo esc_attr(FLUENT_COMMUNITY_PLUGIN_VERSION); ?>" media="screen"/> <?php // phpcs:ignore WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet ?>
    <?php endforeach; ?>
    <?php do_action('fluent_community/headless/head', $scope); ?>
</head>
<body class="fcom_headless_page fcom_headless_scope_<?php echo esc_attr($scope); ?>">

<?php if ($layout == 'signup'): ?>
    <div class="fcom_full_layout fluent_com_auth <?php echo $portal['position'] == 'right' ? ' fcom_auth_page_row_reverse' : ' fcom_auth_page'; ?>">
        <div class="fcom_layout_side"
             style="<?php if (!empty($portal['background_image'])) echo 'background-image: url(' . esc_url($portal['background_image']) . ');'; ?>
             <?php if (!empty($portal['background_color'])) echo 'background-color: ' . esc_attr($portal['background_color']) . ';'; ?>
                 display: <?php echo $portal['hidden'] ? 'none' : 'flex'; ?>">
            <div class="fcom_welcome">
                <?php if (!empty($portal['logo'])): ?>
                    <div class="fcom_logo">
                        <a href="<?php echo esc_url(\FluentCommunity\App\Services\Helper::baseUrl()); ?>">
                            <img src="<?php echo esc_url($portal['logo']); ?>" alt="<?php echo esc_attr__('Site logo', 'fluent-community'); ?>">
                        </a>
                    </div>
                <?php endif; ?>
                <h2 class="fcom_title" style="color: <?php echo esc_attr(!empty($portal['title_color']) ? $portal['title_color'] : 'var(--fcom_text_color, #606266)'); ?>">
                    <?php echo wp_kses_post($portal['title']); ?>
                </h2>
                <div class="fcom_sub_title" style="color: <?php echo esc_attr(!empty($portal['text_color']) ? $portal['text_color'] : 'var(--fcom_text_color, #606266)'); ?>">
                    <p><?php echo wp_kses_post($portal['description']); ?></p>
                </div>
            </div>
        </div>
        <div class="fcom_layout_main" style="<?php if (!empty($portal['form']['background_image'])): ?>background-image: url(<?php echo esc_url($portal['form']['background_image']); ?>);<?php endif; ?>">
            <div class="fluent_com fluent_com_auth">
                <?php do_action('fluent_community/headless/content', $scope); ?>
            </div>
        </div>
    </div>
<?php else: ?>
    <div class="fluent_com">
        <?php do_action('fluent_community/headless/content', $scope); ?>
    </div>
<?php endif; ?>

<script>
    <?php foreach ($js_vars as $fluentCommunityVarKey => $fluentCommunityValues): ?>
    var <?php echo esc_attr($fluentCommunityVarKey); ?> = <?php echo wp_json_encode($fluentCommunityValues); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped  ?>;
    <?php endforeach; ?>
</script>

<?php do_action('fluent_community/headless/before_js_loaded', $scope); ?>

<?php foreach ($js_files as $fluentCommunityFile): ?>
    <script type="module" src="<?php echo esc_url($fluentCommunityFile); ?>?version=<?php echo esc_attr(FLUENT_COMMUNITY_PLUGIN_VERSION); ?>" defer="defer"></script> <?php // phpcs:ignore WordPress.WP.EnqueuedResources.NonEnqueuedScript ?>
<?php endforeach; ?>

<?php if (!empty($load_wp)) { wp_footer(); } ?>

<?php do_action('fluent_community/headless/footer', $scope); ?>
</body>
</html>

```
