Skip to content

Commit b819750

Browse files
Use Jekyll
1 parent 91a2e29 commit b819750

File tree

10 files changed

+457
-189
lines changed

10 files changed

+457
-189
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site
2+
.DS_Store

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
reactivecouchbase.org

_config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
name: ReactiveCouchbase
2+
markdown: redcarpet
3+
pygments: true
4+
description: "A reactive Scala driver for Couchbase"
5+
url: http://reactivecouchbase.org/

_layouts/default.html

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset='utf-8' />
6+
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
7+
<meta name="description" content="ReactiveCouchbase is a Reactive Scala driver for Couchbase" />
8+
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
9+
<title>Reactive Couchbase</title>
10+
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
11+
<style>
12+
.couchbasebody {
13+
padding-top: 18%;
14+
}
15+
.couchbasetitle {
16+
color: rgb(190, 34, 40);
17+
cursor: default;
18+
direction: ltr;
19+
font-family: ff-kievit-web, 'MS UI Gothic', 'MS PGothic', Osaka, Batang, 宋体, SimSun, 微软雅黑, 'Microsoft YaHei', Georgia, 'Times New Roman', Times, sans-serif;
20+
}
21+
#header_wrap {
22+
background-color: rgb(190, 34, 40);
23+
}
24+
#footer_wrap {
25+
background-color: rgb(190, 34, 40);
26+
}
27+
body {
28+
background-color: rgb(190, 34, 40);
29+
}
30+
.gist {
31+
margin-top: 20px;
32+
}
33+
.gist table {
34+
margin-bottom: 0px;
35+
font-size: 12px;
36+
border-bottom-color: red;
37+
}
38+
.gist .line-pre {
39+
box-shadow: 0 0 0 0;
40+
-moz-box-shadow: 0 0 0 0;
41+
-webkit-box-shadow: 0 0 0 0;
42+
-o-box-shadow: 0 0 0 0;
43+
-ms-box-shadow: 0 0 0 0;
44+
}
45+
.gist .gist-meta {
46+
display: none;
47+
}
48+
49+
</style>
50+
</head>
51+
<body>
52+
53+
<a href="http://www.reactivemanifesto.org/">
54+
<img style="border: 0; position: fixed; right:0; top:0; z-index: 9000;margin-top:0px;padding-top:0px;padding-right:0px;box-shadow: 0 0 0 0;-moz-box-shadow: 0 0 0 0;-webkit-box-shadow: 0 0 0 0;-o-box-shadow: 0 0 0 0;-ms-box-shadow: 0 0 0 0;" src="http://www.reactivemanifesto.org/images/ribbons/we-are-reactive-black-right.png">
55+
</a>
56+
57+
<div id="header_wrap" class="outer">
58+
<header class="inner">
59+
<a id="forkme_banner" href="https://github.com/ReactiveCouchbase">View on GitHub</a>
60+
61+
<h1 id="project_title">Reactive Couchbase</h1>
62+
<h3 id="project_tagline">A reactive Scala driver for Couchbase</h3>
63+
64+
<section id="downloads">
65+
<a class="zip_download_link" href="https://github.com/ReactiveCouchbase/repository/raw/master/starterkits/reactivecouchbase-starter-kit.zip" title="Download the starter kit as a .zip file">Download the starter kit as a .zip file</a>
66+
</section>
67+
</header>
68+
</div>
69+
70+
71+
<div id="main_content_wrap" class="outer">
72+
{{ content }}
73+
</div>
74+
75+
<div id="footer_wrap" class="outer">
76+
<footer class="inner">
77+
<p class="copyright">© 2013 – 2014, Mathieu Ancelin & <a href="https://github.com/ReactiveCouchbase/ReactiveCouchbase-core/graphs/contributors">contributors</a></p>
78+
</footer>
79+
</div>
80+
</body>
81+
</html>

_layouts/home.html

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: default
3+
---
4+
<section id="main_content" class="inner">
5+
{{content}}
6+
</section>

_layouts/post.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: default
3+
---
4+
<h2>{{ page.title }}</h2>
5+
<p class="meta">{{ page.date | date_to_string }}</p>
6+
7+
<div class="post">
8+
{{ content }}
9+
</div>

css/main.css

+160
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
/*****************************************************************************/
2+
/*
3+
/* Common
4+
/*
5+
/*****************************************************************************/
6+
7+
/* Global Reset */
8+
* {
9+
margin: 0;
10+
padding: 0;
11+
}
12+
13+
html, body { height: 100%; }
14+
15+
body {
16+
background-color: #FFF;
17+
font: 13.34px Helvetica, Arial, sans-serif;
18+
font-size: small;
19+
text-align: center;
20+
}
21+
22+
h1, h2, h3, h4, h5, h6 {
23+
font-size: 100%; }
24+
25+
h1 { margin-bottom: 1em; }
26+
p { margin: 1em 0; }
27+
28+
a { color: #00a; }
29+
a:hover { color: #000; }
30+
a:visited { color: #a0a; }
31+
32+
/*****************************************************************************/
33+
/*
34+
/* Home
35+
/*
36+
/*****************************************************************************/
37+
.posts {
38+
list-style-type: none;
39+
margin-bottom: 2em;
40+
}
41+
42+
.posts li {
43+
line-height: 1.75em;
44+
}
45+
46+
.posts span {
47+
color: #aaa;
48+
font-family: Monaco, "Courier New", monospace;
49+
font-size: 80%;
50+
}
51+
52+
/*****************************************************************************/
53+
/*
54+
/* Site
55+
/*
56+
/*****************************************************************************/
57+
58+
.site {
59+
font-size: 115%;
60+
text-align: justify;
61+
width: 42em;
62+
margin: 3em auto 2em;
63+
line-height: 1.5em;
64+
}
65+
66+
.header a {
67+
font-weight: bold;
68+
text-decoration: none;
69+
}
70+
71+
.title {
72+
display: inline-block;
73+
margin-bottom: 2em;
74+
}
75+
76+
.title a {
77+
color: #a00;
78+
}
79+
80+
.title a:hover {
81+
color: #000;
82+
}
83+
84+
.header a.extra {
85+
color: #aaa;
86+
margin-left: 1em;
87+
}
88+
89+
.header a.extra:hover {
90+
color: #000;
91+
}
92+
93+
.meta {
94+
color: #aaa;
95+
}
96+
97+
.footer {
98+
font-size: 80%;
99+
color: #666;
100+
border-top: 4px solid #eee;
101+
margin-top: 2em;
102+
overflow: hidden;
103+
}
104+
105+
.footer .contact {
106+
float: left;
107+
margin-right: 3em;
108+
}
109+
110+
.footer .contact a {
111+
color: #8085C1;
112+
}
113+
114+
.footer .rss {
115+
margin-top: 1.1em;
116+
margin-right: -.2em;
117+
float: right;
118+
}
119+
120+
.footer .rss img {
121+
border: 0;
122+
}
123+
124+
/*****************************************************************************/
125+
/*
126+
/* Posts
127+
/*
128+
/*****************************************************************************/
129+
130+
/* standard */
131+
.post pre {
132+
border: 1px solid #ddd;
133+
background-color: #eef;
134+
padding: 0 .4em;
135+
}
136+
137+
.post ul, .post ol {
138+
margin-left: 1.35em;
139+
}
140+
141+
.post code {
142+
border: 1px solid #ddd;
143+
background-color: #eef;
144+
padding: 0 .2em;
145+
}
146+
147+
.post pre code {
148+
border: none;
149+
}
150+
151+
/* terminal */
152+
.post pre.terminal {
153+
border: 1px solid #000;
154+
background-color: #333;
155+
color: #FFF;
156+
}
157+
158+
.post pre.terminal code {
159+
background-color: #333;
160+
}

css/syntax.css

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

0 commit comments

Comments
 (0)