Skip to content

Commit 6d3191c

Browse files
author
tristen
committed
Significantly simplify the bootstrap codebase, move prose configuration into _prose.yml
1 parent 43dda1a commit 6d3191c

File tree

111 files changed

+635
-5278
lines changed

Some content is hidden

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

111 files changed

+635
-5278
lines changed

CNAME

-1
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
bootstrap.prose.io

LICENSE

-25
This file was deleted.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Prose Bootstrap
2-
=================
1+
fresh-start
2+
===========
33

4-
A minimal template to get started with Jekyll and Prose.
4+
Extremely barebones starting point for responsive sites built on Jekyll.

_config.yml

+2-18
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,4 @@
11
auto: true
22
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
3+
baseurl:
4+
permalink: /:title

_includes/js/jquery.min.js

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_layouts/about.html

-8
This file was deleted.

_layouts/article.html

-24
This file was deleted.

_layouts/default.html

+7-21
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,15 @@
33
<!DOCTYPE html>
44
<html>
55
<head>
6+
<title>Site Title {% if page.url != '/index.html' %}| {{page.title}}{% endif %}</title>
67
<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'>
8+
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
9+
<link rel='shortcut icon' href='{{site.baseurl}}/img/favicon.ico' type='image/x-icon' />
10+
<link href='{{site.baseurl}}/site.css' rel='stylesheet' />
1111
</head>
1212
<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>
13+
<div class='container'>
14+
{{content}}
2215
</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>
16+
<script src='{{site.baseurl}}/site.js'></script>
3017
</body>
31-
</html>

_posts/0100-01-01-hello-world.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: default
3+
title: untitled
4+
published: false
5+
---

_posts/articles/2012-06-14-lorem-ipsum.md

-17
This file was deleted.

_posts/articles/2012-06-18-prose-bootstrap.md

-38
This file was deleted.

_prose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
prose:
2+
rooturl: '_posts'

_site/LICENSE

-25
This file was deleted.

0 commit comments

Comments
 (0)