-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.php
More file actions
143 lines (103 loc) · 3.43 KB
/
events.php
File metadata and controls
143 lines (103 loc) · 3.43 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php include "head.php" ?>
<div class="container" id="events">
<div id="events-list">
<h2>Events Page Title</h2>
<section>
<div id="event-thumb"><img src="http://placehold.it/175x125"/>
</div>
<div id="event-detail">
<h3>Eastward Ho! Golf Tournament</h3>
<h4>June 14-15, 2013</h4>
<p>Eastward Ho Country Club, Chatham
</p>
<p><a href="event-detail.php">See Event Details</a></p>
</div>
</section>
<section>
<div id="event-thumb"><img src="http://placehold.it/175x125"/>
</div>
<div id="event-detail">
<h3>Women's Heath Forum<br/><i>Topic: Arthritis</i></h3>
<h4>Wednesday, June 19, 2013</h4>
<p>Michelle Costa, MD – Board-certified in internal medicine and rheumatology<br/><i>Generously sponsored by: WHF Steering Committee member, Terry Martignetti</i>
</p>
<p><a href="">See Event Details</a></p>
</div>
</section>
<section>
<div id="event-thumb"><img src="http://placehold.it/175x125"/>
</div>
<div id="event-detail">
<h3>Summer Evening Gala</h3>
<h4>Saturday, August 3, 2013</h4>
<p>Highfield Hall, Falmouth, MA
</p>
<p><a href="">See Event Details</a></p>
</div>
</section>
<section>
<div id="event-thumb"><img src="http://placehold.it/175x125"/>
</div>
<div id="event-detail">
<h3>Eastward Ho! Auction & Dinner</h3>
<h4>August 8, 2013</h4>
<p>Wequassett Resort and Golf Club, Chatham
</p>
<p><a href="">See Event Details</a></p>
</div>
</section>
<section>
<div id="event-thumb"><img src="http://placehold.it/175x125"/>
</div>
<div id="event-detail">
<h3>Women's Heath Forum<br/><i>Topic: Common Foot Problems & Treatments</i></h3>
<h4>September 9, 2013</h4>
<p>4:00 – 6:00 pm at the Wequassett Resort and Golf Club, Chatham
James W. Boyle, MD – Board-certified in orthopaedic surgery
Topic: Common Foot Problems and Treatments<br/>
</p>
<p><a href="">See Event Details</a></p>
</div>
</section>
<section>
<div id="event-thumb"><img src="http://placehold.it/175x125"/>
</div>
<div id="event-detail">
<h3>Cummaquid Golf Tournament</h3>
<h4>September 16, 2013</h4>
<p>Cummaquid Golf Club, 35 Marstons Ln Yarmouth Port, MA 02675</p>
<p><a href="">See Event Details</a></p>
</div>
</section>
</div><!-- end events list-->
<div id="events-sidebar">
<a class="host-events" href="host-an-event.php">Learn how to organize an event</a>
<section id="publications">
<h3>Community Fundraisers</h3>
<article>
<h4>Event Name</h4>
<h5>Saturday, April 4 2013</h5>
<p>Maecenas faucibus mollis interdum. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.
</p>
<a href="">Learn More</a>
</article>
<article>
<h4>Event Name</h4>
<h5>Saturday, June 14 2013</h5>
<p>Maecenas faucibus mollis interdum. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.
</p>
<a href="">Contact Debbie Smith</a>
</article>
<article>
<h4>Event Name</h4>
<h5>Friday, September 10 2013</h5>
<p>Maecenas faucibus mollis interdum. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.
</p>
<a href="">Learn More</a>
</article>
</section>
</div><!-- end sidebar -->
</div>
<?php include "bottom-ads.php" ?>
</div>
<?php include "footer.php" ?>