mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-06 14:06:34 +02:00
jekyll-sitemap gem added
This commit is contained in:
13
_config.yml
13
_config.yml
@@ -1,4 +1,3 @@
|
||||
safe: true
|
||||
baseurl: /
|
||||
url: http://localhost:4000
|
||||
|
||||
@@ -11,3 +10,15 @@ maruku:
|
||||
png_engine: blahtex
|
||||
png_dir: images/latex
|
||||
png_url: /images/latex
|
||||
|
||||
gems:
|
||||
- jekyll-sitemap
|
||||
|
||||
defaults:
|
||||
-
|
||||
scope:
|
||||
path: ""
|
||||
values:
|
||||
sitemap: false
|
||||
|
||||
exclude: ['CNAME', 'CONTRIBUTING.md', 'LICENSE', 'README.md', 'pages/example.md']
|
||||
|
@@ -2,6 +2,7 @@
|
||||
layout: default
|
||||
title: Website Banners
|
||||
description: "Spread the word! Use these banner to let new PHP programmers know about PHP: The Right Way"
|
||||
sitemap: true
|
||||
---
|
||||
|
||||
# Web Banners
|
||||
|
@@ -1,6 +1,7 @@
|
||||
---
|
||||
layout: default
|
||||
description: "An easy-to-read, quick reference for PHP best practices, accepted coding standards, and links to authoritative PHP tutorials around the Web"
|
||||
sitemap: true
|
||||
---
|
||||
|
||||
{% capture welcome_content %}{% include welcome.md %}{% endcapture %}
|
||||
|
@@ -1,6 +1,7 @@
|
||||
---
|
||||
layout: page
|
||||
title: Design Patterns
|
||||
sitemap: true
|
||||
---
|
||||
|
||||
# Design Patterns
|
||||
|
@@ -1,6 +1,7 @@
|
||||
---
|
||||
layout: page
|
||||
title: Functional Programming in PHP
|
||||
sitemap: true
|
||||
---
|
||||
|
||||
# Functional Programming in PHP
|
||||
|
@@ -1,6 +1,7 @@
|
||||
---
|
||||
layout: page
|
||||
title: The Basics
|
||||
sitemap: true
|
||||
---
|
||||
|
||||
# The Basics
|
||||
@@ -283,7 +284,7 @@ EOD; // closing 'EOD' must be on it's own line, and to th
|
||||
|
||||
* [Heredoc syntax](http://php.net/language.types.string#language.types.string.syntax.heredoc)
|
||||
|
||||
### Which is quicker?
|
||||
### Which is quicker?
|
||||
|
||||
There is a myth floating around that single quote strings are fractionally quicker than double quote strings. This is
|
||||
fundamentally not true.
|
||||
|
15
sitemap.xml
15
sitemap.xml
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>http://www.phptherightway.com/index.html</loc>
|
||||
<lastmod>2012-07-07T01:00:00-05:00</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<priority>1</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://www.phptherightway.com/banners.html</loc>
|
||||
<lastmod>2012-07-08T14:11:00-05:00</lastmod>
|
||||
<changefreq>weekly</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
</urlset>
|
Reference in New Issue
Block a user