Skip to content

Commit f45e4e2

Browse files
committed
GitHub-pages initial commit
1 parent 32d3155 commit f45e4e2

File tree

8 files changed

+832
-1
lines changed

8 files changed

+832
-1
lines changed

gh-pages/_config.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: C++Spec
2+
author: Katherine Whitlock
3+
4+
title: C++Spec | BDD testing for C++
5+
description: A BDD testing library for C++
6+
7+
baseurl: '/cppspec/'
8+
url: 'http://toroidal-code.github.io/cppspec/'
9+
10+
11+
markdown: kramdown
12+
highlighter: rouge
13+
14+
kramdown:
15+
input: GFM
16+
syntax_highlighter: rouge
17+
18+
links:
19+
- name: GitHub
20+
url: http://github.com/toroidal-code/cppspec
21+
external: true
22+
23+
- name: Documentation
24+
url: http://cppspec.readthedocs.org/
25+
external: true
26+
27+
- name: API Docs
28+
url: /dox/html/index.html
29+
30+
- name: Download
31+
url: https://github.com/toroidal-code/cppspec/releases/latest
32+
id: latest-download
33+
external: true

gh-pages/_includes/footer.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<footer id="footer">
2+
<p class="small">Copyright © 2014-2016 {{ site.author }}</p>
3+
</footer>

gh-pages/_includes/navigation.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<nav class="main-nav">
2+
<div class="block">
3+
{% for link in site.links %}
4+
<a target="{% if link.external %}_blank{% else %}_top{% endif %}"
5+
class="main cta"
6+
href="{% unless link.external %}{{ site.url }}{% endunless %}{{ link.url }}">
7+
{{ link.name }}
8+
</a>
9+
{% endfor %}
10+
</div>
11+
</nav>

gh-pages/_layouts/default.html

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title>{{ site.title }}</title>
8+
<link rel="stylesheet" href="{{ site.baseurl }}assets/css/style.css">
9+
<link rel="stylesheet" href="{{ site.baseurl }}assets/css/highlight.css">
10+
</head>
11+
<body>
12+
<div class="profile">
13+
<section id="wrapper">
14+
<header id="header">
15+
<h1>{{ site.name }}</h1>
16+
<h2>{{ site.description }}</h2>
17+
{% include navigation.html %}
18+
</header>
19+
</section>
20+
</div>
21+
22+
<section id="wrapper" class="{% if page.profile %}home{% endif %}">
23+
{{ content }}
24+
</section>
25+
26+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
27+
<script src="{{ site.baseurl }}assets/js/main.js"></script>
28+
</body>
29+
</html>
30+
31+
32+

gh-pages/assets/css/highlight.css

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
.highlight pre, pre, .highlight .hll {
2+
background-color: #ffffff;
3+
/* border: 1px solid #ccc; */
4+
padding: 6px 10px;
5+
/* border-radius: 3px; */
6+
}
7+
.highlight .hll { background-color: #ffffcc }
8+
.highlight .c { color: #999988; font-style: italic } /* Comment */
9+
/* .highlight .err { color: #a61717; background-color: #e3d2d2 } /\* Error *\/ */
10+
.highlight .err { color: #333333; } /* Error */
11+
.highlight .k { color: #000000; font-weight: bold } /* Keyword */
12+
.highlight .o { color: #000000; } /* Operator */
13+
.highlight .n { color: #333333; }
14+
.highlight .p { color: #333333; }
15+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
16+
.highlight .cp { color: #999999; font-weight: bold; /* font-style: italic */} /* Comment.Preproc */
17+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
18+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
19+
.highlight .gc { color: #999; background-color: #EAF2F5; }
20+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
21+
.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
22+
.highlight .gr { color: #aa0000 } /* Generic.Error */
23+
.highlight .gh { color: #999999 } /* Generic.Heading */
24+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
25+
.highlight .go { color: #888888 } /* Generic.Output */
26+
.highlight .gp { color: #555555 } /* Generic.Prompt */
27+
.highlight .gs { font-weight: bold } /* Generic.Strong */
28+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
29+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
30+
.highlight .kc { color: #000000; font-weight: bold } /* Keyword.Constant */
31+
.highlight .kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
32+
.highlight .kn { color: #000000; font-weight: bold } /* Keyword.Namespace */
33+
.highlight .kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
34+
.highlight .kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
35+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
36+
.highlight .m { color: #009999 } /* Literal.Number */
37+
.highlight .s { color: #d01040 } /* Literal.String */
38+
.highlight .na { color: #008080 } /* Name.Attribute */
39+
.highlight .nb { color: #0086B3 } /* Name.Builtin */
40+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
41+
.highlight .no { color: #008080 } /* Name.Constant */
42+
.highlight .nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */
43+
.highlight .ni { color: #800080 } /* Name.Entity */
44+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
45+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
46+
.highlight .nl { color: #990000; font-weight: bold } /* Name.Label */
47+
.highlight .nn { color: #555555 } /* Name.Namespace */
48+
.highlight .nt { color: #000080 } /* Name.Tag */
49+
.highlight .nv { color: #008080 } /* Name.Variable */
50+
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
51+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
52+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
53+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
54+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
55+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
56+
.highlight .sb { color: #d01040 } /* Literal.String.Backtick */
57+
.highlight .sc { color: #d01040 } /* Literal.String.Char */
58+
.highlight .sd { color: #d01040 } /* Literal.String.Doc */
59+
.highlight .s2 { color: #d01040 } /* Literal.String.Double */
60+
.highlight .se { color: #d01040 } /* Literal.String.Escape */
61+
.highlight .sh { color: #d01040 } /* Literal.String.Heredoc */
62+
.highlight .si { color: #d01040 } /* Literal.String.Interpol */
63+
.highlight .sx { color: #d01040 } /* Literal.String.Other */
64+
.highlight .sr { color: #009926 } /* Literal.String.Regex */
65+
.highlight .s1 { color: #d01040 } /* Literal.String.Single */
66+
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
67+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
68+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
69+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
70+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
71+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */

0 commit comments

Comments
 (0)