This commit is contained in:
Sdogruyol 2015-12-27 19:08:05 +02:00
commit 6896cb413a
2 changed files with 19 additions and 19 deletions

View file

@ -2,7 +2,7 @@
title: Kemal title: Kemal
email: dogruyolserdar@gmail.com email: dogruyolserdar@gmail.com
description: 'Lightning Fast, Super Simple web framework for Crystal. Inspired by Sinatra' description: 'Lightning Fast, Super Simple web framework for Crystal. Inspired by Sinatra'
baseurl: "http://serdardogruyol.com/kemal/" # the subpath of your site, e.g. /blog baseurl: "/kemal" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site url: "" # the base hostname & protocol for your site
twitter_username: sdogruyol twitter_username: sdogruyol
github_username: sdogruyol github_username: sdogruyol
@ -18,11 +18,11 @@ collections:
nav_bars: nav_bars:
- title: "Documents" - title: "Documents"
url: "/docs/getting_started" url: "/kemal/docs/getting_started"
- title: "Blog" - title: "Blog"
url: "/blog" url: "/blog"
- title: "Github" - title: "Github"
url: "http://github.com/sdogruyol/kemal" url: "https://github.com/sdogruyol/kemal"
examples: examples:
- title: "How to connect to Database" - title: "How to connect to Database"

View file

@ -8,11 +8,11 @@ layout: home
Kemal Kemal
</h1> </h1>
<h2> <h2>
Kemal is a micro web framework written in Crystal language. Kemal is a fast, easy to use micro web framework written in Crystal language.
<br /> <br />
It's strongly inspired from Sinatra. It's inspired from Sinatra.
</h2> </h2>
<a href="/docs/getting_started" class="button">Start Now!</a> <a href="/kemal/docs/getting_started" class="button">Start Now!</a>
</div> </div>
<div class="wrapper block"> <div class="wrapper block">
@ -42,7 +42,7 @@ layout: home
<li>Support all REST verbs</li> <li>Support all REST verbs</li>
<li>Websocket support</li> <li>Websocket support</li>
<li>Request/Response context, easy parameter handling</li> <li>Request/Response context, easy parameter handling</li>
<li>Middlewares</li> <li>Custom and built-in middlewares</li>
<li>Built-in JSON support</li> <li>Built-in JSON support</li>
<li>Built-in static file serving</li> <li>Built-in static file serving</li>
<li>Built-in view templating via ecr</li> <li>Built-in view templating via ecr</li>