Skip to content

Commit 59b5b25

Browse files
committed
Added the About Us page.
1 parent df7b0f0 commit 59b5b25

File tree

6 files changed

+47
-0
lines changed

6 files changed

+47
-0
lines changed

resources/404.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ <h1>PHP Community
1010
<div id="nav">
1111
<ul>
1212
<li><a href="/">Home</a></li>
13+
<li><a href="/about">About Us</a></li>
14+
<li><a href="/sponsorships">Sponsor Us</a></li>
15+
<li><a href="/cfp">CFP</a></li>
16+
<li><a href="/subscribe">Keep in Touch</a></li>
1317
</ul>
1418
</div>
1519
<div id="social">

resources/about.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
$title = 'About Us - ';
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</a></li>
13+
<li>About Us</li>
14+
<li><a href="/sponsorships">Sponsor Us</a></li>
15+
<li><a href="/cfp">CFP</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 aim to inspire you to make great things with&#160;PHP.</p>
26+
</div>
27+
<div class="section">
28+
29+
<h2>About the PHP Community Conference</h2>
30+
<p>The PHP Community Conference is a conference by and for the PHP community. It's for people who care about PHP and what they make with it.</p>
31+
<p>Inspired by conferences like <a href="http://www.webstock.org.nz/">Webstock</a> and <a href="http://brooklynbeta.org/">Brooklyn Beta</a>, we want to make a friendly conference for us. Together with our friends and peers, we (<a href="http://twitter.com/ramsey">Ben</a>, <a href="http://twitter.com/lisamusing">Lisa</a>, and <a href="http://twitter.com/NickASloan">Nick</a>) aim to inspire you to make great things with PHP.</p>
32+
<p>We believe the PHP community is just about the friendliest group around, and we're going to be sharing stories of successes, failures, and lessons learned along the way. Because this is our first conference, we're hoping you'll join us, roll up your sleeves, and help make this something we can all be proud of.</p>
33+
<p>See you in Nashville!</p>
34+
35+
</div>
36+
</div>
37+
<?php
38+
$body = ob_get_clean();
39+

resources/cfp.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ <h1>PHP Community
1010
<div id="nav">
1111
<ul>
1212
<li><a href="/">Home</a></li>
13+
<li><a href="/about">About Us</a></li>
1314
<li><a href="/sponsorships">Sponsor Us</a></li>
1415
<li>CFP</li>
1516
<li><a href="/subscribe">Keep in Touch</a></li>

resources/home.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ <h3>Nashville,<span>&nbsp;</span>TN</h3>
1515
<div id="nav">
1616
<ul>
1717
<li>Home</li>
18+
<li><a href="/about">About Us</a></li>
1819
<li><a href="/sponsorships">Sponsor Us</a></li>
1920
<li><a href="/cfp">CFP</a></li>
2021
<li><a href="/subscribe">Keep in Touch</a></li>

resources/sponsorships.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ <h1>PHP Community
1010
<div id="nav">
1111
<ul>
1212
<li><a href="/">Home</a></li>
13+
<li><a href="/about">About Us</a></li>
1314
<li>Sponsor Us</li>
1415
<li><a href="/cfp">CFP</a></li>
1516
<li><a href="/subscribe">Keep in Touch</a></li>

resources/subscribe.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ <h1>PHP Community
1010
<div id="nav">
1111
<ul>
1212
<li><a href="/">Home</a></li>
13+
<li><a href="/about">About Us</a></li>
1314
<li><a href="/sponsorships">Sponsor Us</a></li>
1415
<li><a href="/cfp">CFP</a></li>
1516
<li>Keep in Touch</li>

0 commit comments

Comments
 (0)