Skip to content

Commit 5eafc37

Browse files
committed
Merge branch 'master' into prod
2 parents 5396e63 + c869940 commit 5eafc37

File tree

7 files changed

+57
-17
lines changed

7 files changed

+57
-17
lines changed

resources/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ <h1>PHP Community
1111
<ul>
1212
<li><a href="home">Home</a></li>
1313
<li><a href="speakers">Speakers</a></li>
14+
<li><a href="location">Location</a></li>
1415
<li><a href="about">About Us</a></li>
1516
<li><a href="sponsorships">Sponsor Us</a></li>
16-
<li><a href="subscribe">Keep in Touch</a></li>
1717
</ul>
1818
</div>
1919
<div id="social">

resources/about.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ <h1>PHP Community
1111
<ul>
1212
<li><a href="home">Home</a></li>
1313
<li><a href="speakers">Speakers</a></li>
14+
<li><a href="location">Location</a></li>
1415
<li>About Us</li>
1516
<li><a href="sponsorships">Sponsor Us</a></li>
1617
</ul>

resources/home.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ <h3>Nashville,<span>&nbsp;</span>TN</h3>
1616
<ul>
1717
<li>Home</li>
1818
<li><a href="speakers">Speakers</a></li>
19+
<li><a href="location">Location</a></li>
1920
<li><a href="about">About Us</a></li>
2021
<li><a href="sponsorships">Sponsor Us</a></li>
2122
</ul>

resources/location.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
$title = 'Location - ';
3+
ob_start();
4+
?>
5+
<div id="container" class="sub location">
6+
<div class="header">
7+
<h1>PHP Community
8+
<span>Conference</span></h1>
9+
<div id="nav">
10+
<ul>
11+
<li><a href="home">Home</a></li>
12+
<li><a href="speakers">Speakers</a></li>
13+
<li>Location</li>
14+
<li><a href="about">About Us</a></li>
15+
<li><a href="sponsorships">Sponsor Us</a></li>
16+
</ul>
17+
</div>
18+
<div id="social">
19+
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.phpcon.org%2F&amp;layout=button_count&amp;show_faces=false&amp;width=80&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:21px;" allowTransparency="true" id="fbLike"></iframe>
20+
<p class="twitter">Follow Us: <a href="http://twitter.com/phpcomcon">PHPCOMCON</a></p>
21+
</div>
22+
</div>
23+
<div class="aside">
24+
<img src="http://farm5.static.flickr.com/4122/4752661782_8097fd6545.jpg" alt="aVenue" style="width: 350px;">
25+
</div>
26+
<div class="section">
27+
<h2>Venue</h2>
28+
<p>We've booked a fantastic space for the first PHP Community Conference. <a href="http://www.nashvilleeventspace.com/venues/avenue/">aVenue</a> is one of Nashville's hippest venues. Located only a block away from the Nashville Hilton, aVenue is the perfect space for our conference.</p>
29+
<h2>Hotel</h2>
30+
<p>Some text about the hotel.</p>
31+
<h2>Travel</h2>
32+
<p>Located only 10 miles from the Nashville Hilton, Nashville International (BNA) is a convenient arrival location for your visit. The Grey Line Airport Express provides shuttle service to the hotel for $12 one-way, or $18 round trip. There are other taxi and shuttle services available as well.</p>
33+
</div>
34+
<?php
35+
$body = ob_get_clean();

0 commit comments

Comments
 (0)