-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
65 lines (57 loc) · 2.13 KB
/
Copy pathcontact.html
File metadata and controls
65 lines (57 loc) · 2.13 KB
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
---
layout: default
title: Contact
cover: 'assets/images/cover1.jpg'
class: 'info-template'
navigation: True
logo: 'assets/images/blog-logo.png'
current: tag
---
<!-- < default}} -->
<!-- The tag above means - insert everything in this file into the [body] of the default.hbs template -->
<!-- If we have a tag cover, display that - else blog cover - else nothing -->
<header class="main-header tag-head" style="background-image: url({{ site.baseurl }}{{ page.cover}})">
<nav class="main-nav overlay clearfix">
<a class="blog-logo" href="{{ site.baseurl }}"><img src="{{ site.baseurl }}{{ page.logo }}" alt="Blog Logo" /></a>
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
</nav>
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">{{ page.tag | capitalize }}</h1>
<h2 class="page-description">
{% if tag_description %}
{{ tag_description }}
{% elsif page.tag %}
A {{ paginator.total_posts }}-post collection
{% endif %}
</h2>
</div>
</div>
</header>
<!-- The main content area on the homepage -->
<main id="content" class="content" role="main">
<article class="post">
<!-- Everything inside the #post tags pulls data from the post -->
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
</header>
<section class="post-content">
You can contact us via any or all of the following channels:
<ul>
<li>david@ciwise.com</li>
<li>919-605-6529</li>
<li>2932 Tram Road, Fuquay Varina, NC 27526-9362</li>
<li>Skype - ceociwise</li>
</ul>
<p>You can also send us an email from here:</p>
<p>
<form action="https://formspree.io/david@ciwise.com" method="POST">
Name: <input type="text" name="name"><br/>
Email: <input type="email" name="_replyto"><br/>
Message: <textarea rows="4" cols="50" name="notes"></textarea><br/>
<input type="submit" value="Send">
</form>
</p>
</section>
</article>
</main>