| 1 |
<?php |
| 2 |
defined('ABSPATH') or die; |
| 3 |
/** |
| 4 |
* Template Name: Fluent Community Frame |
| 5 |
* Description: The template for displaying the Fluent Community frame. |
| 6 |
* |
| 7 |
* @package FluentCommunity |
| 8 |
*/ |
| 9 |
$fluentCommunityThemeName = get_option('template'); |
| 10 |
|
| 11 |
?> |
| 12 |
<!doctype html> |
| 13 |
<html <?php language_attributes(); ?>> |
| 14 |
<head> |
| 15 |
<meta charset="<?php bloginfo('charset'); ?>"> |
| 16 |
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"> |
| 17 |
<?php wp_head(); ?> |
| 18 |
<?php do_action('fluent_community/template_header'); ?> |
| 19 |
</head> |
| 20 |
|
| 21 |
<body <?php body_class(); ?> <?php do_action('fluent_community/theme_body_atts', $fluentCommunityThemeName); ?>> |
| 22 |
<?php wp_body_open(); ?> |
| 23 |
<div class="fcom_wrap fcom_wp_frame"> |
| 24 |
<?php do_action('fluent_community/before_portal_dom'); ?> |
| 25 |
<div class="fluent_com"> |
| 26 |
<div class="fhr_wrap"> |
| 27 |
<?php do_action('fluent_community/portal_header', 'wp'); ?> |
| 28 |
<div class="fhr_content"> |
| 29 |
<div class="fhr_home"> |
| 30 |
<div class="feed_layout"> |
| 31 |
<div class="spaces"> |
| 32 |
<div id="fluent_community_sidebar_menu" class="space_contents"> |
| 33 |
<?php do_action('fluent_community/portal_sidebar', 'wp'); ?> |
| 34 |
</div> |
| 35 |
</div> |
| 36 |
<div class="feeds_main <?php echo apply_filters('fluent_community/is_supported_theme', false, $fluentCommunityThemeName) ? 'fcom_supported_wp_content' : 'fcom_wp_content fcom_fallback_wp_content' ?>"> |
| 37 |
<?php do_action('fluent_community/theme_content', $fluentCommunityThemeName, 'default'); ?> |
| 38 |
</div> |
| 39 |
</div> |
| 40 |
</div> |
| 41 |
</div> |
| 42 |
</div> |
| 43 |
</div> |
| 44 |
</div> |
| 45 |
|
| 46 |
<?php wp_footer(); ?> |
| 47 |
<?php do_action('fluent_community/template_footer'); ?> |
| 48 |
</body> |
| 49 |
</html> |
| 50 |
|