Skip to content

Commit 5d8c631

Browse files
committed
prose-boostrap
1 parent 66c4489 commit 5d8c631

File tree

53 files changed

+2209
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+2209
-0
lines changed

.gitignore

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

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bootstrap.prose.io

LICENSE

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Copyright (c) 2012 Development Seed
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without modification,
5+
are permitted provided that the following conditions are met:
6+
7+
- Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
- Redistributions in binary form must reproduce the above copyright notice, this
10+
list of conditions and the following disclaimer in the documentation and/or
11+
other materials provided with the distribution.
12+
- Neither the name "Development Seed" nor the names of its contributors may be
13+
used to endorse or promote products derived from this software without
14+
specific prior written permission.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
20+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
23+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Prose Bootstrap
2+
=================
3+
4+
A minimal template to get started with Jekyll and Prose.

_config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
auto: true
2+
server: true
3+
permalink: none
4+
baseurl: ""
5+
exclude:
6+
- .gitignore
7+
- README.md
8+
9+
prose:
10+
rooturl: "_posts"
11+
metadata:
12+
_posts/articles: |
13+
published: false
14+
layout: article
15+
title: Your Post Title
16+
abstract: Short summary of your article.
17+
author_twitter: johndoe
18+
author: John Doe
19+
categories:
20+
- articles

_layouts/about.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="about post-content">
6+
<div class="title">{{page.title}}</div>
7+
{{ content }}
8+
</div>

_layouts/article.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: default
3+
---
4+
5+
6+
<div class="article-navigation">
7+
{% for item in site.categories.articles limit:40 offset:0 %}
8+
<a class="article-link" href="{{site.baseurl}}{{item.url}}" title="{{item.title}}">
9+
10+
</a>
11+
{% endfor %}
12+
</div>
13+
14+
<div class="intro">
15+
<div class="title">{{page.title}}</div>
16+
<div class="abstract">{{page.abstract}}</div>
17+
<div class="meta"> Posted by <a href="http://twitter.com/{{page.author_twitter}}">{{page.author}}</a> on {{ page.date | date: "%B %d, %Y" }} </div>
18+
</div>
19+
20+
<div class="article-wrapper">
21+
<div class="help post-content">
22+
{{ content }}
23+
</div>
24+
</div>

_layouts/default.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
---
3+
<!DOCTYPE html>
4+
<html>
5+
<head>
6+
<meta charset='UTF-8'/>
7+
<title>Poole &middot; Serving Jekyll faithfully</title>
8+
<link rel='shortcut icon' href='{{site.baseurl}}/images/favicon.ico' type='image/x-icon' />
9+
<link rel='stylesheet' href='{{site.baseurl}}/fonts/open-sans.css'>
10+
<link rel='stylesheet' href='{{site.baseurl}}/app.css'>
11+
</head>
12+
<body>
13+
<div id='container'>
14+
15+
<div id="header">
16+
<div class="navigation">
17+
<a href="{{site.baseurl}}" class="title">Prose Bootstrap</a>
18+
</div>
19+
</div>
20+
21+
<div id='main'>{{content}}</div>
22+
</div>
23+
24+
<div id='footer'>
25+
<div class="footer-content">
26+
Made by <a href="http://developmentseed.org">Development Seed</a>, Source Code on <a href="http://github.com/prose/bootstrap">GitHub</a>
27+
</div>
28+
</div>
29+
<a href="https://github.com/prose/bootstrap"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
30+
</body>
31+
</html>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: article
3+
title: The lorem ipsum
4+
abstract: Curabitur ac ante sit amet elit placerat luctus. Pellentesque quis tellus urna, in euismod mi. Pellentesque ultricies dictum massa, non faucibus ligula iaculis sed.
5+
author_twitter: _mql
6+
author: Michael Aufreiter
7+
categories:
8+
- articles
9+
---
10+
11+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut semper lacinia purus, id gravida tortor semper et. Mauris quis dolor at quam tincidunt lacinia quis quis nunc. In vulputate nibh at enim ullamcorper adipiscing. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
12+
13+
14+
# Neque porro quisquam
15+
16+
17+
Sed facilisis felis in justo iaculis placerat. Donec venenatis suscipit metus congue sodales. Sed suscipit lorem sit amet ipsum condimentum vitae mattis dui lobortis. Etiam quis tortor nulla. Sed id quam non arcu eleifend tempor. Fusce tincidunt condimentum nisl, vitae laoreet lorem rhoncus eget. Nunc nec libero mi, vel posuere mauris. In neque arcu, rutrum sed consectetur at, lobortis nec mauris.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
layout: article
3+
title: Introducing Prose Bootstrap
4+
abstract: Prose Bootstrap is a minimal template intended to get you started with Jekyll.
5+
author_twitter: _mql
6+
author: Michael Aufreiter
7+
categories:
8+
- articles
9+
published: true
10+
---
11+
12+
13+
In order to get started with Prose Bootstrap, all you have to do is forking the [repository](http://github.com/prose/bootstrap) and make your own adjustments.
14+
15+
# Adjust Configuration
16+
17+
Make sure you setup `_config.yml` correctly.
18+
19+
If your page lives under `http://username.github.com/sitename` your config.yml looks like this:
20+
21+
auto: true
22+
server: true
23+
permalink: none
24+
baseurl: "sitename"
25+
exclude:
26+
- .gitignore
27+
- README.md
28+
29+
30+
# Use Prose
31+
32+
Once your site is up you can start managing it with [Prose](http://prose.io). Follow the instructions [here](http://prose.io/help/getting-started.html).
33+
34+
![](http://prose.io/images/screenshots/edit.png)
35+
36+
37+
38+

0 commit comments

Comments
 (0)