Skip to content

Commit f2a35dd

Browse files
committed
Merge branch 'master' into prod
2 parents 8150ac0 + c3a9b52 commit f2a35dd

File tree

6 files changed

+59
-4
lines changed

6 files changed

+59
-4
lines changed

css/style.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,12 @@ div#container.sub div#body {
171171
color: #363636;
172172
}
173173

174+
div#container.sub div#registrationbody {
175+
font-family: Arial, sans-serif;
176+
font-size: 14px;
177+
color: #363636;
178+
}
179+
174180
div#container.sub h2 {
175181
font-size: 20px;
176182
text-transform: uppercase;

resources/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h1>PHP Community
1010
<div id="nav">
1111
<ul>
1212
<li><a href="home">Home</a></li>
13-
<li><a href="http://phpcon.eventbrite.com/">Register</a></li>
13+
<li><a href="register">Register</a></li>
1414
<li>About Us</li>
1515
<li><a href="sponsorships">Sponsor Us</a></li>
1616
<li><a href="subscribe">Keep in Touch</a></li>

resources/cfp.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h1>PHP Community
1010
<div id="nav">
1111
<ul>
1212
<li><a href="home">Home</a></li>
13-
<li><a href="http://phpcon.eventbrite.com/">Register</a></li>
13+
<li><a href="register">Register</a></li>
1414
<li><a href="about">About Us</a></li>
1515
<li><a href="sponsorships">Sponsor Us</a></li>
1616
<li><a href="subscribe">Keep in Touch</a></li>

resources/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h3>Nashville,<span>&nbsp;</span>TN</h3>
1515
<div id="nav">
1616
<ul>
1717
<li>Home</li>
18-
<li><a href="http://phpcon.eventbrite.com/">Register</a></li>
18+
<li><a href="register">Register</a></li>
1919
<li><a href="about">About Us</a></li>
2020
<li><a href="sponsorships">Sponsor Us</a></li>
2121
<li><a href="subscribe">Keep in Touch</a></li>

resources/register.html

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?php
2+
$title = 'Register - ';
3+
ob_start();
4+
?>
5+
6+
<div id="container" class="sub">
7+
<div class="header">
8+
<h1>PHP Community
9+
<span>Conference</span></h1>
10+
<div id="nav">
11+
<ul>
12+
<li><a href="home">Home</a></li>
13+
<li>Register</li>
14+
<li><a href="about">About Us</a></li>
15+
<li><a href="sponsorships">Sponsor Us</a></li>
16+
<li><a href="subscribe">Keep in Touch</a></li>
17+
</ul>
18+
</div>
19+
<div id="social">
20+
<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>
21+
<p class="twitter">Follow Us: <a href="http://twitter.com/phpcomcon">PHPCOMCON</a></p>
22+
</div>
23+
</div>
24+
<div class="aside">
25+
<p>We can't wait to see you in Nashville!</p>
26+
</div>
27+
<div class="section">
28+
<div id="registrationbody">
29+
<h2>Registration for the PHP Community Conference Includes</h2>
30+
<ul>
31+
<li>access to the tutorial day on April 21st</li>
32+
<li>access to the conference day on April 22nd</li>
33+
<li>lunch on both days</li>
34+
<li>access to the after-party on the 22nd</li>
35+
<li>a great sense of community at the conference itself</li>
36+
</ul>
37+
38+
<p>
39+
We'll post the schedule as soon as we can, but you can expect two informative tracks on tutorial day and two inspiring tracks on conference day. The current price of <span style="font-size: 16px;">$349.95</span> is only available until the schedule goes up or the first 100 tickets are sold, so <a href="http://phpcon.eventbrite.com/">buy now</a> and save!
40+
</p>
41+
<p>
42+
Planning on attending, but want to do more to help your community conference succeed? Community Sponsorships are reasonably priced at $500, and include admission to the conference. Purchase the sponsorship through <a href="http://phpconsponsors.eventbrite.com/">Eventbrite</a> or email us at <a href="mailto:[email protected]">[email protected]</a> for more information.
43+
</p>
44+
</div>
45+
</div>
46+
</div>
47+
<?php
48+
$body = ob_get_clean();
49+

resources/subscribe.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h1>PHP Community
1010
<div id="nav">
1111
<ul>
1212
<li><a href="home">Home</a></li>
13-
<li><a href="http://phpcon.eventbrite.com/">Register</a></li>
13+
<li><a href="register">Register</a></li>
1414
<li><a href="about">About Us</a></li>
1515
<li><a href="sponsorships">Sponsor Us</a></li>
1616
<li>Keep in Touch</li>

0 commit comments

Comments
 (0)