-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
29 lines (20 loc) · 928 Bytes
/
contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
{{ include('snippets/meta.html', {"title": "Plenty Admin Contact", "description": "This is the contact page of the admin UI", "author": "Jamie McDonnell"}) }}
</head>
{{ include('snippets/header.html', {"page": "contact", "dashboard" : false, "settings" : false, "contact" : true, "organization" : false}) }}
<div class="container-fluid">
<div class="row">
{{ include('snippets/sidebar-nav.html') }}
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<div class="">
<h1>This is the template for the contact page</h1>
<p>Below Will be a form to contact Plenty Support</p>
</div>
</div><!--/.col-xs-12.col-sm-9-->
</div><!--/row-->
</div><!--/.container-->
{{ include('snippets/footer.html'), {"organization":false}) }}
</body>
</html>