-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhead.html
More file actions
62 lines (57 loc) · 2.74 KB
/
head.html
File metadata and controls
62 lines (57 loc) · 2.74 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ site.main_title }} - {{ page.title }}</title>
{% if page.description %}
<meta name="description" content="{{page.description}}">
{% else %}
<meta name="description" content="{{site.description}}">
{% endif %}
<meta name="author" content="Brian Scaturro, Austin Morris">
<link href='http://fonts.googleapis.com/css?family=Nunito|Open+Sans:700,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/pygments-monokai.css">
<link rel="shortcut icon" href="/img/favicon.ico">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
{% include tracking.html %}
</head>
<body>
<a href="https://github.com/peridot-php/peridot"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
<div class="container">
<nav class="nav">
<ul>
<li><a href="/">Home</a></li>
<li><a href="http://peridot-php.github.io/docs/" target="__blank">API Documentation</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
Guides <i class="fa fa-caret-down"></i>
</a>
<ul class="dropdown-menu">
<li><a href="/events.html">Events</a></li>
<li><a href="/scopes.html">Scopes</a></li>
<li><a href="/syntax.html">DSLs</a></li>
<li><a href="/plugins.html">Plugins</a></li>
<li><a href="https://github.com/peridot-php/peridot/wiki" target="__blank">Wiki</a></li>
</ul>
</li>
</ul>
</nav>
<header class="row">
{% if page.type == 'index' %}
<h1 class="logo">
Peridot
</h1>
{% else %}
<h2 class="logo">
Peridot
</h2>
{% endif %}
</header>
<main role="main">
<p class="tag">
highly extensible, highly enjoyable, BDD testing framework for PHP.
</p>