mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-09 23:46:37 +02:00
Changing Introduction to Welcome
This commit is contained in:
@@ -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.
|
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.
|
||||||
|
|
@@ -28,7 +28,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<nav class="site-navigation">
|
<nav class="site-navigation">
|
||||||
<ul>
|
<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#code_style_guide">Code Style Guide</a></li>
|
||||||
<li><a href="/index.html#language_highlights">Language Highlights</a>
|
<li><a href="/index.html#language_highlights">Language Highlights</a>
|
||||||
<ul>
|
<ul>
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="site-content">
|
<div class="site-content">
|
||||||
<header class="site-header">
|
<header class="site-header" id="site-header">
|
||||||
<hgroup>
|
<hgroup>
|
||||||
<h1 class="site-title"><a href="/">PHP</a></h1>
|
<h1 class="site-title"><a href="/">PHP</a></h1>
|
||||||
<h2 class="site-slogan">The Right Way.</h2>
|
<h2 class="site-slogan">The Right Way.</h2>
|
||||||
|
@@ -2,8 +2,8 @@
|
|||||||
layout: default
|
layout: default
|
||||||
---
|
---
|
||||||
|
|
||||||
{% capture introduction_content %}{% include introduction.md %}{% endcapture %}
|
{% capture welcome_content %}{% include welcome.md %}{% endcapture %}
|
||||||
{{ introduction_content|markdownify }}
|
{{ welcome_content|markdownify }}
|
||||||
|
|
||||||
{% capture codestyleguide_content %}{% include code-style-guide.md %}{% endcapture %}
|
{% capture codestyleguide_content %}{% include code-style-guide.md %}{% endcapture %}
|
||||||
{{ codestyleguide_content|markdownify }}
|
{{ codestyleguide_content|markdownify }}
|
||||||
|
Reference in New Issue
Block a user