# fluent-cart/1.6.4/app/Modules/Templating/fallback-generic-template.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.4. 21 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Modules/Templating/fallback-generic-template.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/app/Modules/Templating/fallback-generic-template.php
- Modified: 2025-11-20T13:11: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-cart/1.6.4/code/app/Modules/Templating/fallback-generic-template.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
<?php
/**
 * Generic Fallback Template for FluentCart Archives mainly for product archives
 *
 */
do_action('fluent_cart/generic_template/rendering');
get_header();
?>
<?php do_action('fluent_cart/generic_template/before_content'); ?>
<div style="width: 100%; max-width: var(--global-content-width); display: block; margin-top: 20px; margin-bottom: 20px;" class="fct-genric-template-wrapper site-container">
    <div id="main" class="site-main">
        <?php do_action('fluent_cart/template/before_content'); ?>
        <?php do_action('fluent_cart/template/main_content'); ?>
        <?php do_action('fluent_cart/template/after_content'); ?>
    </div>
</div>
<?php do_action('fluent_cart/generic_template/after_content'); ?>

<?php get_footer(); ?>

```
