-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
101 lines (79 loc) · 2.98 KB
/
events.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
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
---
layout: default
title: Events
meta: The Edge Events
background: events-bg.png
---
{% for post in site.categories.events %}
<div class="post-preview">
<a href="{{post.url}}">
<h2 class="post-title">{{post.title}}</h2></a>
<h3 class="post-subtitle">{{post.meta}}</h3>
<p class="post-meta">Posted by <a href="#">{{post.author}}</a> on {{post.date | date: "%b %d , %Y"}}</p>
</div>
<hr>
{% endfor %}
<div class="modal fade" id="contact-modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header text-center">
<h1>Contact Helen Fosam!</h1>
</div>
<div class="modal-body contact-info text-center">
<h4><strong>The Edge Medical Writing</strong> </h4>
<p>106 Compton Circle<br>Robbinsville NJ 08691</p>
<p>(609)-273-6019</p>
<ul class="list-unstyled">
<li><a href="mailto:[email protected]" class="btn btn-raised btn-primary">Email Me !</a>
</li>
</ul>
</div>
<div class="modal-body contact-form">
<form class="form-horizontal" role="form" method="post" action="https://formspree.io/[email protected]">
<fieldset>
<!-- Form Name -->
<legend class="text-center">Let me know what you think!</legend>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="name">Name</label>
<div class="col-md-4">
<input id="name" name="name" type="text" placeholder="Name" class="form-control input-md" required="">
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="email">Email</label>
<div class="col-md-4">
<input id="email" name="email" type="text" placeholder="[email protected]" class="form-control input-md" required="">
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="phone">Phone</label>
<div class="col-md-4">
<input id="phone" name="phone" type="text" placeholder="(555)-555-5555" class="form-control input-md">
</div>
</div>
<!-- Textarea -->
<div class="form-group">
<label class="col-md-4 control-label" for="message">Message</label>
<div class="col-md-4">
<textarea class="form-control" id="message" name="message"></textarea>
</div>
</div>
<!-- Button -->
<div class="form-group">
<label class="col-md-4 control-label" for="submit">Submit</label>
<div class="col-md-4">
<button id="submit" name="submit" class="btn btn-success">Submit</button>
</div>
</div>
</fieldset>
</form>
</div>
<div class="modal-footer">
<button class="btn btn-primary" type="button" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>