forked from codeguy/php-the-right-way
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathdefault.html
111 lines (103 loc) · 6.58 KB
/
default.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8"/>
<title>{% if page.title %}{{ page.title }} - {% endif %}PHP: La Manera Correcta</title>
<meta name="description" content="{{ page.description }}"/>
<meta name="robots" content="index,follow,archive"/>
<meta property="og:image" content="http://www.phptherightway.com/images/og-logo.png"/>
<meta property="og:title" content="PHP: La Manera Correcta"/>
<meta property="og:description" content="Una referencia práctica y fácil de entender de PHP con los mejores metodos, estándares de codigo, y enlaces a tutoriales autoritativos en la Red"/>
<meta property="og:url" content="http://phpdevenezuela.github.io/php-the-right-way/"/>
<meta property="og:site_name" content="PHP: La Manera Correcta"/>
<meta property="og:type" content="website"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link href='http://fonts.googleapis.com/css?family=Alfa+Slab+One|Droid+Serif:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{ site.baseurl }}/styles/all.css"/>
<link rel="stylesheet" href="{{ site.baseurl }}/styles/print.css" media="print, handheld"/>
<link rel="stylesheet" href="{{ site.baseurl }}/styles/syntax.css"/>
<link rel="icon" href="{{ site.baseurl }}/images/favicon.png" type="image/png"/>
</head>
<body>
<nav class="site-navigation">
<div class="build-date">Actualizado el: {{ site.time }}</div>
<ul>
<li><a href="{{ site.baseurl }}/#bienvenido">Bienvenido</a>
<ul>
<li><a href="{{ site.baseurl }}/#traducciones">Traducciones</a></li>
<li><a href="{{ site.baseurl }}/#como-colaborar">¿Cómo colaborar?</a></li>
<li><a href="{{ site.baseurl }}/#corre-la-voz">¡Corre la voz!</a></li>
</ul>
</li>
{% assign lastIsChild = false %}
{% for post in site.posts reversed %}
{% if post.isChild != true %}
{% if insideSection %}
</ul>
</li>
{% assign insideSection = false %}
{% endif %}
{% endif %}
<li><a href="{{ site.baseurl }}/#{{ post.anchor }}">{{ post.title }}</a>
{% if post.isChild %}
</li>
{% else %}
<ul>
{% assign insideSection = true %}
{% endif %}
{% assign lastIsChild = post.isChild %}
{% endfor %}
</ul>
</li>
<li><a href="{{ site.baseurl }}/#creditos">Créditos</a></li>
</ul>
</nav>
<div class="site-content">
<a class="fork-me" href="https://github.com/phpdevenezuela/php-the-right-way/">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub">
</a>
<header class="site-header" id="site-header">
<hgroup>
<h1 class="site-title"><a href="/">PHP</a></h1>
<h2 class="site-slogan">La Manera Correcta.</h2>
</hgroup>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://phpdevenezuela.github.io/php-the-right-way/" data-size="large" data-hashtags="php">Tweet</a>
</header>
{{ content }}
<footer class="site-footer" id="site-footer">
<h2 id="creditos">Créditos</h2>
<h2 class="epsilon">Creado y mantenido por</h2>
<ul>
<li><a href="http://twitter.com/codeguy">Josh Lockhart</a></li>
</ul>
<h2 class="epsilon">Colaboradores del proyecto</h2>
<ul>
<li><a href="http://krisjordan.com/">Kris Jordan</a></li>
<li><a href="http://philsturgeon.co.uk/">Phil Sturgeon</a></li>
</ul>
<h2 class="epsilon">Contribuyentes al proyecto</h2>
<div id="contributors">Loading…</div>
<h2 class="epsilon">Patrocinadores del proyecto</h2>
<ul class="mbd">
<li><a href="http://www.newmediacampaigns.com">New Media Campaigns</a></li>
</ul>
<p>
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">PHP: The Right Way</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.twitter.com/codeguy" property="cc:attributionName" rel="cc:attributionURL">Josh Lockhart</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://www.phptherightway.com" rel="dct:source">www.phptherightway.com</a>.
</p>
</footer>
</div>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script src="scripts/setup.js"></script>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-46694322-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>