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 >
2015-08-23 20:20:28 +00:00
< li class = "active" > < a href = "/landing_pages" > Landing Pages< / a >
2015-06-15 21:49:16 +00:00
< / 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" >
2015-08-24 01:58:48 +00:00
< button type = "button" class = "btn btn-primary" onclick = "edit(-1)" data-toggle = "modal" data-target = "#newLandingPageModal" > < i class = "fa fa-plus" > < / i > New Page< / button >
2015-06-15 21:49:16 +00:00
< / div >
2015-08-12 02:12:09 +00:00
< div id = "loading" >
< i class = "fa fa-spinner fa-spin fa-4x" > < / i >
< / div >
2015-08-26 02:03:12 +00:00
< div id = "emptyMessage" class = "row" style = "display:none;" >
< div class = "alert alert-info" >
No pages created yet. Let's create one!
2015-06-15 21:49:16 +00:00
< / 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-23 20:20:28 +00:00
<!-- Modal -->
< div class = "modal fade" id = "newLandingPageModal" tabindex = "-1" role = "dialog" aria-labelledby = "modalLabel" >
< div class = "modal-dialog" role = "document" >
< div class = "modal-content" >
<!-- New Template Modal -->
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-label = "Close" > < span aria-hidden = "true" > × < / span > < / button >
< h4 class = "modal-title" id = "pageModalLabel" > New Landing Page< / h4 >
< / div >
< div class = "modal-body" >
< div class = "row" id = "modal.flashes" > < / div >
< label class = "control-label" for = "name" > Name:< / label >
< div class = "form-group" >
< input type = "text" class = "form-control" placeholder = "Page name" id = "name" autofocus / >
< / div >
< div class = "form-group" >
2015-09-16 01:39:33 +00:00
< button class = "btn btn-danger" data-toggle = "modal" data-target = "#importSiteModal" > < i class = "fa fa-globe" > < / i > Import Site< / button >
2015-08-23 20:20:28 +00:00
< / div >
<!-- Nav tabs -->
< ul class = "nav nav-tabs" role = "tablist" >
< li class = "active" role = "html" > < a href = "#html" aria-controls = "html" role = "tab" data-toggle = "tab" > HTML< / a > < / li >
< / ul >
<!-- Tab panes -->
< div class = "tab-content" >
< div role = "tabpanel" class = "tab-pane active" id = "html" >
< textarea id = "html_editor" > < / textarea >
< / div >
< / div >
< / div >
< div class = "modal-footer" >
2015-08-25 23:56:58 +00:00
< button type = "button" data-dismiss = "modal" class = "btn btn-default" onclick = "dismiss()" > Cancel< / button >
2015-08-23 20:20:28 +00:00
< button type = "button" class = "btn btn-primary" id = "modalSubmit" > Save Page< / button >
< / div >
< / div >
2015-08-25 23:56:58 +00:00
< / div >
2015-08-23 20:20:28 +00:00
< / div >
2015-08-24 01:58:48 +00:00
<!-- Modal -->
< div class = "modal fade" id = "importSiteModal" tabindex = "-1" role = "dialog" aria-labelledby = "modalLabel" >
< div class = "modal-dialog" role = "document" >
< div class = "modal-content" >
<!-- New Template Modal -->
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-label = "Close" > < span aria-hidden = "true" > × < / span > < / button >
< h4 class = "modal-title" id = "importSiteModalLabel" > Import Site< / h4 >
< / div >
< div class = "modal-body" >
< div class = "row" id = "modal.flashes" > < / div >
< label class = "control-label" for = "url" > URL:< / label >
< div class = "form-group" >
< input type = "text" class = "form-control" placeholder = "http://google.com" id = "url" autofocus / >
< / div >
< / div >
< div class = "modal-footer" >
2015-09-16 01:39:33 +00:00
< button type = "button" data-dismiss = "modal" class = "btn btn-default" > Cancel< / button >
2015-08-25 23:56:58 +00:00
< button type = "button" class = "btn btn-primary" id = "modalSubmit" onclick = "importSite()" > Import< / button >
2015-08-24 01:58:48 +00:00
< / div >
< / div >
2015-08-25 23:56:58 +00:00
< / div >
2015-08-24 01:58:48 +00:00
< / 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 >
2015-08-23 20:20:28 +00:00
< script src = "/js/app/landing_pages.js" > < / script >
2015-08-12 02:12:09 +00:00
{{end}}