2015-08-12 02:12:09 +00:00
{{define "body"}}
2015-06-15 21:49:16 +00:00
< div class = "container-fluid" >
< div class = "row" >
< div class = "col-sm-3 col-md-2 sidebar" >
< ul class = "nav nav-sidebar" >
2015-07-28 00:44:10 +00:00
< li > < a href = "/" > Dashboard< / a >
2015-06-15 21:49:16 +00:00
< / li >
2015-06-17 04:09:27 +00:00
< li > < a href = "/campaigns" > Campaigns< / a >
2015-06-15 21:49:16 +00:00
< / li >
2015-06-17 04:09:27 +00:00
< li > < a href = "/users" > Users & Groups< / a >
2015-06-15 21:49:16 +00:00
< / li >
2015-06-17 04:09:27 +00:00
< li > < a href = "/templates" > Email Templates< / a >
2015-06-15 21:49:16 +00:00
< / li >
< li class = "active" > < a href = "#/landing_pages" > Landing Pages< / a >
< / li >
2015-06-17 04:09:27 +00:00
< li > < a href = "/settings" > Settings< / a >
2015-06-15 21:49:16 +00:00
< / li >
< li > < a href = "/api/" > API Documentation< / a >
< / li >
< / ul >
< / div >
< / div >
< / div >
2015-08-12 02:12:09 +00:00
< div class = "col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main" >
2015-06-15 21:49:16 +00:00
< h1 class = "page-header" >
Landing Pages
< / h1 >
2015-08-12 02:12:09 +00:00
< div id = "flashes" class = "row" > < / div >
2015-06-15 21:49:16 +00:00
< div class = "row" >
< button type = "button" class = "btn btn-primary" ng-click = "editPage('new')" data-toggle = "modal" data-target = "#newLandingPageModal" > < i class = "fa fa-plus" > < / i > New Page< / button >
< / div >
2015-08-12 02:12:09 +00:00
< div id = "loading" >
< i class = "fa fa-spinner fa-spin fa-4x" > < / i >
< / div >
< div style = "display:none;" >
2015-06-15 21:49:16 +00:00
< div class = "row" >
< div class = "alert alert-info" >
No pages created yet. Let's create one!
< / div >
< / div >
< / div >
2015-08-12 02:12:09 +00:00
< div class = "row" >
< table id = "pagesTable" class = "table" style = "display:none;" >
< thead >
< tr >
< th > Name< / th >
< th > Last Modified Date< / th >
< th class = "col-md-2" > < / th >
2015-06-15 21:49:16 +00:00
< / tr >
2015-08-12 02:12:09 +00:00
< / thead >
< tbody >
2015-06-15 21:49:16 +00:00
< / tbody >
< / table >
< / div >
< / div >
2015-08-12 02:12:09 +00:00
{{end}}
{{define "scripts"}}
< script src = "/js/ckeditor/ckeditor.js" > < / script >
< script src = "/js/ckeditor/adapters/jquery.js" > < / script >
{{end}}