-
Notifications
You must be signed in to change notification settings - Fork 0
/
email-template.php
123 lines (97 loc) · 3.6 KB
/
email-template.php
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
//initilize the page
require_once("inc/init.php");
//require UI configuration (nav, ribbon, etc.)
require_once("inc/config.ui.php");
/*---------------- PHP Custom Scripts ---------
YOU CAN SET CONFIGURATION VARIABLES HERE BEFORE IT GOES TO NAV, RIBBON, ETC.
E.G. $page_title = "Custom Title" */
$page_title = "Blank Page";
/* ---------------- END PHP Custom Scripts ------------- */
//include header
//you can add your custom css in $page_css array.
//Note: all css files are inside css/ folder
$page_css[] = "your_style.css";
include("inc/header.php");
//include left panel (navigation)
//follow the tree in inc/config.ui.php
$page_nav["misc"]["sub"]["email_template"]["active"] = true;
include("inc/nav.php");
?>
<!-- ==========================CONTENT STARTS HERE ========================== -->
<!-- MAIN PANEL -->
<div id="main" role="main">
<?php
//configure ribbon (breadcrumbs) array("name"=>"url"), leave url empty if no url
//$breadcrumbs["New Crumb"] => "http://url.com"
$breadcrumbs["Misc"] = "";
include("inc/ribbon.php");
?>
<!-- MAIN CONTENT -->
<div id="content">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h1 class="page-title txt-color-blueDark">
<!-- PAGE HEADER -->
<i class="icon-fixed-width icon-home"></i>
Email Template
<span>>
Responsive Email templates!
</span>
</h1>
</div>
</div>
<!-- row -->
<div class="row">
<div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
<img src="<?php echo ASSETS_URL; ?>/img/demo/basic.png" alt="Basic Email Template" style="width:100%; height:auto;">
<br>
<br>
<a href="../COMMON_ASSETS/goodies/email-templates/basic.html" target="_blank" class="btn btn-primary btn-block">Basic Email Template</a>
</div>
<div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
<img src="<?php echo ASSETS_URL; ?>/img/demo/sidebar.png" alt="Sidebar Email Template" style="width:100%; height:auto;">
<br>
<br>
<a href="../goodies/email-templates/sidebar.html" target="_blank" class="btn btn-primary btn-block">Sidebar Email Template</a>
</div>
<div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
<img src="<?php echo ASSETS_URL; ?>/img/demo/hero.png" alt="Hero Email Template" style="width:100%; height:auto;">
<br>
<br>
<a href="../COMMON_ASSETS/goodies/email-templates/hero.html" target="_blank" class="btn btn-primary btn-block">Hero Email Template</a>
</div>
<div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
<img src="<?php echo ASSETS_URL; ?>/img/demo/sidebarhero.png" alt="Sidebar with Hero" style="width:100%; height:auto;">
<br>
<br>
<a href="../COMMON_ASSETS/goodies/email-templates/sidebar-hero.html" target="_blank" class="btn btn-primary btn-block">Sidebar with Hero</a>
</div>
<div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
<img src="<?php echo ASSETS_URL; ?>/img/demo/newsletter.png" alt="Newsletter Email Template" style="width:100%; height:auto;">
<br>
<br>
<a href="../COMMON_ASSETS/goodies/email-templates/newsletter.html" target="_blank" class="btn btn-primary btn-block">Newsletter Template</a>
</div>
</div>
<!-- end row -->
</div>
<!-- END MAIN CONTENT -->
</div>
<!-- END MAIN PANEL -->
<!-- ==========================CONTENT ENDS HERE ========================== -->
<?php
//include required scripts
include("inc/scripts.php");
?>
<!-- PAGE RELATED PLUGIN(S)
<script src="..."></script>-->
<script type="text/javascript">
$(document).ready(function() {
// PAGE RELATED SCRIPTS
})
</script>
<?php
//include footer
include("inc/footer.php");
?>