File tree Expand file tree Collapse file tree 3 files changed +60
-0
lines changed
profiles/pece/themes/pece_scholarly_lite/layouts/pece_moscone_flipped Expand file tree Collapse file tree 3 files changed +60
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * @file
4
+ * Template for Radix Moscone Flipped.
5
+ *
6
+ * Variables:
7
+ * - $css_id: An optional CSS id to use for the layout.
8
+ * - $content: An array of content, each item in the array is keyed to one
9
+ * panel of the layout. This layout supports the following sections:
10
+ */
11
+ ?>
12
+
13
+ <div class="panel-display moscone-flipped clearfix <?php if (!empty ($ classes )) { print $ classes ; } ?> <?php if (!empty ($ class )) { print $ class ; } ?> " <?php if (!empty ($ css_id )) { print "id= \"$ css_id \"" ; } ?> >
14
+
15
+ <div class="container-fluid">
16
+ <div class="row">
17
+ <div class="col-md-12 radix-layouts-header panel-panel">
18
+ <div class="panel-panel-inner">
19
+ <?php print $ content ['header ' ]; ?>
20
+ </div>
21
+ </div>
22
+ </div>
23
+
24
+ <div class="row">
25
+ <div class="col-md-8 radix-layouts-content panel-panel">
26
+ <div class="panel-panel-inner">
27
+ <?php print $ content ['contentmain ' ]; ?>
28
+ </div>
29
+ </div>
30
+ <div class="col-md-4 radix-layouts-sidebar panel-panel">
31
+ <div class="panel-panel-inner">
32
+ <?php print $ content ['sidebar ' ]; ?>
33
+ </div>
34
+ </div>
35
+ </div>
36
+
37
+ <div class="row">
38
+ <div class="col-md-12 radix-layouts-footer panel-panel">
39
+ <div class="panel-panel-inner">
40
+ <?php print $ content ['footer ' ]; ?>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
45
+
46
+ </div><!-- /.moscone-flipped -->
Original file line number Diff line number Diff line change
1
+ <?php
2
+ // Plugin definition
3
+ $ plugin = array (
4
+ 'title ' => t ('Moscone Flipped ' ),
5
+ 'icon ' => 'pece-moscone-flipped.png ' ,
6
+ 'category ' => t ('PECE ' ),
7
+ 'theme ' => 'pece_moscone_flipped ' ,
8
+ 'regions ' => array (
9
+ 'header ' => t ('Header ' ),
10
+ 'sidebar ' => t ('Content Sidebar ' ),
11
+ 'contentmain ' => t ('Content ' ),
12
+ 'footer ' => t ('Footer ' ),
13
+ ),
14
+ );
You can’t perform that action at this time.
0 commit comments