PluginProbe
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses / 2.6.01
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses v2.6.01
2.11.0 2.10.0 2.10.01 2.9.1 2.9.0 2.8.1 2.8.0 2.7.7 2.7.5 2.7.0 2.6.01 2.6.0 2.5.0 2.4.01 trunk 1.0.90 1.0.91 1.0.92 1.0.93 1.0.94 1.0.95 1.0.96 1.0.97 1.0.98 1.0.99 All 78 releases
fluent-community / Modules / Theming / templates / fluent-community-frame.php

fluent-community-frame.php in FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses 2.6.01, at Modules/Theming/templates/fluent-community-frame.php

50 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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