-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbase.html
45 lines (37 loc) · 1.67 KB
/
base.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
{% extends "!layout.html" %}
{%- block doctype -%}<!DOCTYPE html>{%- endblock -%}
{% set css_files = css_files + ['_static/scrolls.css', '_static/pygments.css', '_static/main.css', 'http://fonts.googleapis.com/css?family=Lobster', '_static/print.css'] %}
{%- block header %}
<header>
<ul class="main-menu">
<li{% if pagename == 'index' %} class="active"{% endif %}><a href="/">main</a></li>
<li{% if pagename != 'index' %} class="active"{% endif %}><a href="{{ pathto('docs/introduction') }}">phpspec manual</a></li>
<li class="right"><a href="http://github.com/phpspec/prophecy">prophecy repo</a></li>
<li class="right"><a href="http://github.com/phpspec/phpspec">phpspec repo</a></li>
</ul>
</header>
{% endblock %}
{% block content %}{% endblock %}
{% block footer %}
<footer>
<dl>
<dt>Resources</dt>
<dd><a href="http://behat.org">Behat</a></dd>
</dl>
<dl>
<dt>GitHub</dt>
<dd><a href="https://github.com/phpspec/phpspec">phpspec</a></dd>
</dl>
<div class="clear"></div>
</footer>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34229660-1']);
_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>
{% endblock %}