forked from DigitalBees/digitalbees.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
GianArb
committed
Oct 22, 2013
0 parents
commit 3321562
Showing
19 changed files
with
798 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
_site | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name: Your New Jekyll Site | ||
pygments: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<title>{{ page.title }}</title> | ||
<meta name="viewport" content="width=device-width"> | ||
|
||
<!-- syntax highlighting CSS --> | ||
<link rel="stylesheet" href="/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="/css/syntax.css"> | ||
|
||
<!-- Custom CSS --> | ||
<link rel="stylesheet" href="/css/main.css"> | ||
|
||
</head> | ||
<body> | ||
<!-- Fixed navbar --> | ||
<div class="navbar navbar-default navbar-fixed-top"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="/">Digitalbees DevZone</a> | ||
</div> | ||
<div class="navbar-collapse collapse"> | ||
<ul class="nav navbar-nav"> | ||
<li class="dropdown"> | ||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Docs<b class="caret"></b></a> | ||
<ul class="dropdown-menu"> | ||
<li><a href="/api.html">API</a></li> | ||
<li><a href="/client-server.html">Js Sdk</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
<!--<ul class="nav navbar-nav navbar-right"> | ||
<li><a href="../navbar-static-top/">Js Sdk</a></li> | ||
<li><a href="../navbar-static-top/">Php Sdk</a></li> | ||
</ul>--> | ||
</div> | ||
<!--/.nav-collapse --> | ||
</div> | ||
</div> | ||
<div class="row-fluid" style="margin-top: 2%;"> | ||
<div class="span12"> | ||
<div class="container"> | ||
<div class="site"> | ||
{{ content }} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- /container --> | ||
|
||
<script src="/js/jquery-1.10.2.min.js" type="text/javascript"></script> | ||
<script src="/js/bootstrap.min.js" type="text/javascript"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
layout: default | ||
--- | ||
<h2>{{ page.title }}</h2> | ||
<p class="meta">{{ page.date | date_to_string }}</p> | ||
|
||
<div class="post"> | ||
{{ content }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
layout: post | ||
title: "Welcome to Jekyll!" | ||
date: 2013-10-02 00:25:20 | ||
categories: jekyll update | ||
--- | ||
|
||
You'll find this post in your `_posts` directory - edit this post and re-build (or run with the `-w` switch) to see your changes! | ||
To add new posts, simply add a file in the `_posts` directory that follows the convention: YYYY-MM-DD-name-of-post.ext. | ||
|
||
Jekyll also offers powerful support for code snippets: | ||
|
||
{% highlight ruby %} | ||
def print_hi(name) | ||
puts "Hi, #{name}" | ||
end | ||
print_hi('Tom') | ||
#=> prints 'Hi, Tom' to STDOUT. | ||
{% endhighlight %} | ||
|
||
Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh]. | ||
|
||
[jekyll-gh]: https://github.com/mojombo/jekyll | ||
[jekyll]: http://jekyllrb.com |
Oops, something went wrong.