forked from DiscipleTools/disciple-tools-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-metrics-wide.php
More file actions
38 lines (24 loc) · 793 Bytes
/
template-metrics-wide.php
File metadata and controls
38 lines (24 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/*
* Name: Metrics Wide
* @note Full width template for plugin or extension use.
*/
dt_please_log_in();
if ( ! current_user_can( 'access_disciple_tools' ) ) {
wp_safe_redirect( '/registered' );
exit();
}
?>
<?php get_header(); ?>
<div style="padding:15px" class="template-metrics-wide">
<div id="inner-content" class="grid-x grid-margin-x grid-margin-y">
<div class="small-12 cell ">
<section id="container" class="medium-12 cell">
<div class="bordered-box">
<div id="chart"><span class="loading-spinner active"></span></div><!-- Target container -->
</div>
</section>
</div>
</div> <!-- end #inner-content -->
</div> <!-- end #content -->
<?php get_footer(); ?>