Skip to content

Commit

Permalink
Changing Introduction to Welcome
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisJordan committed Jul 9, 2012
1 parent 5fea2fe commit 5e5bb19
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _includes/introduction.md → _includes/welcome.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Introduction
# Welcome

There's a lot of bad information on the Web (I'm looking at you, W3Schools) that leads new PHP users astray, propagating bad practices and bad code. This must stop. _PHP: The Right Way_ is an easy-to-read, quick reference for PHP best practices, accepted coding standards, and links to authoritative tutorials around the Web.

Expand Down
4 changes: 2 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<body>
<nav class="site-navigation">
<ul>
<li><a href="/index.html#introduction">Introduction</a></li>
<li><a href="/index.html#site-header">Welcome</a></li>
<li><a href="/index.html#code_style_guide">Code Style Guide</a></li>
<li><a href="/index.html#language_highlights">Language Highlights</a>
<ul>
Expand All @@ -52,7 +52,7 @@
</ul>
</nav>
<div class="site-content">
<header class="site-header">
<header class="site-header" id="site-header">
<hgroup>
<h1 class="site-title"><a href="/">PHP</a></h1>
<h2 class="site-slogan">The Right Way.</h2>
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
layout: default
---

{% capture introduction_content %}{% include introduction.md %}{% endcapture %}
{{ introduction_content|markdownify }}
{% capture welcome_content %}{% include welcome.md %}{% endcapture %}
{{ welcome_content|markdownify }}

{% capture codestyleguide_content %}{% include code-style-guide.md %}{% endcapture %}
{{ codestyleguide_content|markdownify }}
Expand Down

0 comments on commit 5e5bb19

Please sign in to comment.