Skip to content

Commit 6cfd2a3

Browse files
author
Aleksei Richards
committed
Added Jekyll blog and first post
1 parent 5c37c08 commit 6cfd2a3

File tree

10 files changed

+175
-0
lines changed

10 files changed

+175
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_drafts/
2+
_site/

.ruby-gemset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
carbonwallet

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby-2.0.0-p195

Gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'jekyll', '=1.0.2'
4+
gem 'liquid', '=2.5.0'
5+
gem 'redcarpet', '=2.2.2'
6+
gem 'maruku', '=0.6.1'
7+
gem 'rdiscount', '=1.6.8'
8+
gem 'RedCloth', '=4.2.9'

Gemfile.lock

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
RedCloth (4.2.9)
5+
classifier (1.3.3)
6+
fast-stemmer (>= 1.0.0)
7+
colorator (0.1)
8+
commander (4.1.3)
9+
highline (~> 1.6.11)
10+
directory_watcher (1.4.1)
11+
fast-stemmer (1.0.2)
12+
highline (1.6.19)
13+
jekyll (1.0.2)
14+
classifier (~> 1.3)
15+
colorator (~> 0.1)
16+
commander (~> 4.1.3)
17+
directory_watcher (~> 1.4.1)
18+
kramdown (~> 1.0.2)
19+
liquid (~> 2.3)
20+
maruku (~> 0.5)
21+
pygments.rb (~> 0.5.0)
22+
safe_yaml (~> 0.7.0)
23+
kramdown (1.0.2)
24+
liquid (2.5.0)
25+
maruku (0.6.1)
26+
syntax (>= 1.0.0)
27+
posix-spawn (0.3.6)
28+
pygments.rb (0.5.0)
29+
posix-spawn (~> 0.3.6)
30+
yajl-ruby (~> 1.1.0)
31+
rdiscount (1.6.8)
32+
redcarpet (2.2.2)
33+
safe_yaml (0.7.1)
34+
syntax (1.0.0)
35+
yajl-ruby (1.1.0)
36+
37+
PLATFORMS
38+
ruby
39+
40+
DEPENDENCIES
41+
RedCloth (= 4.2.9)
42+
jekyll (= 1.0.2)
43+
liquid (= 2.5.0)
44+
maruku (= 0.6.1)
45+
rdiscount (= 1.6.8)
46+
redcarpet (= 2.2.2)

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pygments: true
2+
permalink: '/:title'
3+
markdown: kramdown

_layouts/blog.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>CarbonWallet - Secure Deterministic Bitcoin Wallet</title>
6+
<meta content="width=device-width, initial-scale=1.0" name="viewport">
7+
<meta content="Deterministic Bitcoin Wallet" name="description">
8+
<meta content="carbonwallet" name="author">
9+
10+
<!-- If I have seen further it is by standing on the shoulders of giants. -->
11+
12+
<!-- Style sheets -->
13+
<link href="/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
14+
<link href="/css/font-awesome.css" rel="stylesheet">
15+
<link href="/css/default.css" rel="stylesheet">
16+
<link href="/css/packaged-app.css" rel="stylesheet">
17+
18+
<link href="/favicon.png" rel="icon" type="image/png">
19+
</head>
20+
<body>
21+
<div class="navbar navbar-fixed-top">
22+
<div class="navbar-inner">
23+
<div class="container">
24+
<a class="btn btn-navbar" data-target=".nav-collapse" data-toggle="collapse">
25+
<span class="icon-bar"></span> <span class="icon-bar"></span>
26+
<span class="icon-bar"></span>
27+
</a>
28+
<a class="brand" href="/"><i class="icon-money"></i> CarbonWallet</a>
29+
<div class="nav-collapse">
30+
<ul class="nav">
31+
<li class="active">
32+
<a id="home" href="#">Home</a>
33+
</li>
34+
</ul>
35+
</div>
36+
</div>
37+
</div>
38+
</div>
39+
<div id="content" style="margin-top: 60px">
40+
<div class="container">
41+
<div class="row">
42+
<div class="span8">
43+
{{content}}
44+
</div>
45+
</div>
46+
</div>
47+
</div>
48+
<footer>
49+
<p><i class="icon-money"></i> <strong>CarbonWallet &copy; 2013</strong></p>
50+
<p><small>Powered by
51+
<a href="http://pages.github.com">GitHub Pages</a> |
52+
<a href="https://github.com/carbonwallet/carbonwallet.github.io">View Source Code</a>
53+
</small>
54+
</p>
55+
</footer>
56+
</body>
57+
</html>

_layouts/post.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: blog
3+
blog: true
4+
---
5+
6+
<article class='ten columns offset-by-four' id="article-content">
7+
<header class="ten columns" id="article-header">
8+
<h2>{{ page.title }}</h2>
9+
</header>
10+
11+
<div class='ten columns gray' id="date-header">
12+
<p>
13+
{{ page.date | date: "%b %Y" }}
14+
{% if page.updated_at %}
15+
revised {{ page.updated_at }}
16+
{% endif %}
17+
</p>
18+
19+
</div>
20+
21+
<div class="ten columns" id="article-content">
22+
{{ content }}
23+
</div>
24+
25+
</article>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: post
3+
title: We've added safe instawallet style URLs.
4+
updated: 20 Jun, 2013
5+
---
6+
7+
We've now added instawallet style URL's to CarbonWallet, so you can now open a wallet as easy as.
8+
9+
@http://carbonwallet.com/#tell-thick-yeah-friend-mock-paint-curse-emotion-silent-salty-flood-gentle@
10+
11+
Sorry, there's no money in that wallet.
12+
13+
The # in the URL means that the passphrase will never be sent by the browser to the server. So the URL will never be recorded. This is a good idea to use with day to day spending accounts, where quick access is more important than overall security.
14+
15+
This would also work with your electrum passphrase, just prepend your passphrase with
16+
17+
@http://carbonwallet.com/#@
18+
19+
And convert all the spaces to minus signs (-).

blog.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: blog
3+
title: CarbonWallet.com Blog
4+
---
5+
6+
<ul id="posts" class="twelve columns offset-by-four">
7+
{% for post in site.posts %}
8+
<li>
9+
<a class="nine columns" href="{{ post.url }}">{{ post.title }}</a>
10+
<span class="two columns">{{ post.date | date: "%b %Y" }}</span>
11+
</li>
12+
{% endfor %}
13+
</ul>

0 commit comments

Comments
 (0)