This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
108 lines (97 loc) · 5 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Carew</title>
<meta name="description" content="The tiny website generator">
<meta name="author" content="Grégoire Pineau">
<meta name="viewport" content="width=device-width">
<link rel="canonical" href="http://carew.github.io/index.html"/>
<link rel="alternate" href="http://carew.github.io/feed/atom.xml" type="application/atom+xml" title="Carew"/>
<!-- Latest compiled and minified CSS --><link rel="stylesheet" href="./css/bootstrap.min.css"><link rel="stylesheet" href="./css/bootstrap-theme.min.css"><link rel="stylesheet" href="http://yandex.st/highlightjs/8.0/styles/pojoaque.min.css"> </head>
<body>
<div class="container">
<div class="page-header">
<ul class="list-inline pull-right">
<li>
<a href="cookbook.html">
Cookbooks
</a>
</li>
<li>
<a href="documentation.html">
Documentation
</a>
</li>
<li>
<a href="news.html">
News
</a>
</li>
</ul>
<h1>
<a href=".">
Carew
</a>
</h1>
</div>
<div class="content">
<h1>
Carew <small>The tiny website generator</small>
</h1>
<h2 id="what-is-it">What is it?<a href="#what-is-it" class="anchor">#</a></h2>
<p>Carew is another static site / blog generator. Write some blog posts or pages in
<a href="http://daringfireball.net/projects/markdown/">markdown</a>, Carew will render them
in html.</p>
<h2 id="features">Features<a href="#features" class="anchor">#</a></h2>
<ul><li>Simple but extensible</li>
<li>Auto syntax highlighting</li>
<li>Auto generated navigation</li>
<li>Auto generated pagination</li>
<li>One theme base on Bootstrap</li>
<li>Shareable/Linkable SEO Friendly URLs</li>
<li>No need for php, ruby, python on the production server.</li>
<li>Git friendly</li>
</ul><h2 id="installation">Installation<a href="#installation" class="anchor">#</a></h2>
<p>The best way to start with carew is to use the <a href="https://github.com/carew/boilerplate">carew
boilerplate</a>: You will need
<a href="http://getcomposer.org">composer</a>.</p>
<pre><code>$ php composer.phar create-project carew/boilerplate my_website
$ cd my_website
$ bin/carew build</code></pre>
<p>That's all, you can browse the <code>web/</code> directory. If you are using php 5.4+, you
can start the build-in webserver:</p>
<pre><code>$ php bin/carew serve</code></pre>
<h2 id="demo">Demo<a href="#demo" class="anchor">#</a></h2>
<p>Do you want to see it in action? This doc uses Carew ;) Have a look to the
<a href="https://github.com/carew/carew/tree/master/doc">codebase</a>.</p>
<p>By the way, if you use Carew, let me know.</p>
<h2 id="why-another-one">Why another one?<a href="#why-another-one" class="anchor">#</a></h2>
<p>I used to use <a href="https://github.com/mojombo/jekyll">jekyll</a>, but I was very
unhappy with the templating engine. And then, I discovered
<a href="https://github.com/igorw/balrog/tree/8ed377d4eb1759926d8cfceb1796ed4234dceaef">balrog</a>.
It was very cool but <a href="https://github.com/igorw/balrog/">igor</a> took
another direction. So I forked it, and carew was born.</p>
<h3 id="why-this-name">Why this name?<a href="#why-this-name" class="anchor">#</a></h3>
<p>Just like every other static site / blog generator (<a href="https://github.com/mojombo/jekyll">jekyll</a>,
<a href="https://github.com/hyde/hyde">hyde</a>, <a href="https://github.com/obensonne/poole">poole</a>,
<a href="https://github.com/spjwebster/lanyon">lanyon</a>), its name comes from the
<em><a href="http://en.wikipedia.org/wiki/Strange_Case_of_Dr_Jekyll_and_Mr_Hyde">Strange Case of Dr Jekyll and Mr Hyde</a></em>
story.</p> </div>
<footer>
<p class="text-center">
©
<a href="http://gregoirepineau.fr">
Grégoire Pineau
</a>
2015
<small>
with help from <a href="http://carew.github.com/" target="_blank">Carew</a>
</small>
</p>
</footer>
</div>
<script src="./js/jquery-2.1.0.min.js"></script><script src="./js/bootstrap.min.js"></script><script src="http://yandex.st/highlightjs/8.0/highlight.min.js"></script><script>hljs.initHighlightingOnLoad();</script> </body>
</html>