Skip to content

Commit 7714a0b

Browse files
committed
Initial commit
0 parents  commit 7714a0b

40 files changed

+676
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.gem
2+
.bundle
3+
.jekyll-cache
4+
.sass-cache
5+
Gemfile.lock
6+
_site

.ruby-gemset

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

.ruby-version

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

.travis.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: ruby
2+
rvm:
3+
- 2.4
4+
script:
5+
- jekyll build --drafts
6+
deploy:
7+
- provider: pages
8+
skip-cleanup: true
9+
github-token: $GITHUB_TOKEN
10+
on:
11+
branch: master
12+
local-dir: _site
13+
- provider: rubygems
14+
api_key: $API_KEY
15+
skip-cleanup: true
16+
on:
17+
tags: true

CONTRIBUTING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Contributing Guidelines
2+
=======================
3+
4+
The preferred coding style for this project is the [Google HTML/CSS Style
5+
Guide.](https://google.github.io/styleguide/htmlcssguide.html)

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'https://rubygems.org'
2+
gemspec

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2018 Ramon de C Valle
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included
12+
in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
jekyll-theme-bootstrap4
2+
=======================
3+
4+
[![Build Status](https://travis-ci.org/rcvalle/jekyll-theme-bootstrap4.svg?branch=master)](https://travis-ci.org/rcvalle/jekyll-theme-bootstrap4)
5+
6+
A [Bootstrap-based](https://getbootstrap.com/) Jekyll theme.
7+
8+
9+
Installation
10+
------------
11+
12+
To install jekyll-theme-bootstrap4:
13+
14+
1. Add the following lines to your Jekyll site's `Gemfile` file:
15+
16+
gem 'jekyll-paginate'
17+
gem 'jekyll-theme-bootstrap4'
18+
19+
2. On a command prompt or terminal with your Jekyll site's directory as the
20+
current working directory, run the following command:
21+
22+
$ bundle install
23+
24+
25+
Usage
26+
-----
27+
28+
To use jekyll-theme-bootstrap4:
29+
30+
1. Add the `jekyll-paginate` plugin to your Jekyll site's `_config.yml` file
31+
under `plugins`:
32+
33+
plugins:
34+
- jekyll-paginate
35+
36+
2. Add the `paginate` option to your Jekyll site's `_config.yml` file and
37+
replace `3` by the preferred maximum number of posts to display per page:
38+
39+
paginate: 3
40+
41+
3. Add the following line to your Jekyll site's `_config.yml` file:
42+
43+
theme: jekyll-theme-bootstrap4
44+
45+
4. Copy the `_plugins` directory from the theme's directory to your Jekyll
46+
site's directory.
47+
48+
5. Copy the `category.html` and `tag.html` files from the theme's `_layouts`
49+
directory to your Jekyll site's `_layouts` directory.
50+
51+
6. Copy the `index.html` file from the theme's directory to your Jekyll
52+
site's directory.
53+
54+
7. Optional: Add the following line to your Jekyll site's `_config.yml` file
55+
and replace `UA-XXXXX-Y` by your Analytics tracking ID:
56+
57+
analytics: UA-XXXXX-Y
58+
59+
8. Optional: Add the following line to your Jekyll site's `_config.yml` file
60+
and replace `EXAMPLE` by your Disqus shortname:
61+
62+
disqus_shortname: EXAMPLE
63+
64+
See [_config.yml](_config.yml) for an example configuration file.
65+
66+
67+
Contributing
68+
------------
69+
70+
See [CONTRIBUTING.md](CONTRIBUTING.md).
71+
72+
73+
License
74+
-------
75+
76+
Licensed under the MIT license. See [LICENSE](LICENSE) for license text and
77+
copyright information.

_config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
baseurl: /jekyll-theme-bootstrap4
2+
exclude:
3+
- "*.gemspec"
4+
- "CONTRIBUTING*"
5+
- "Gemfile*"
6+
- "LICENSE*"
7+
- "README*"
8+
paginate: 3
9+
paginate_path: /pages/:num/
10+
permalink: /:year/:month/:day/:title/
11+
plugins:
12+
- jekyll-paginate
13+
title: Title
14+
url: https://rcvalle.github.io

_drafts/lorem-ipsum.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
author: Unknown
3+
categories:
4+
- Uncategorized
5+
comments: true
6+
layout: post
7+
published: true
8+
tags:
9+
- lorem ipsum
10+
- lorem
11+
- ipsum
12+
title: Lorem ipsum
13+
---
14+
15+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
16+
17+
Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam eaque ipsa, quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt, explicabo. Nemo enim ipsam voluptatem, quia voluptas sit, aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos, qui ratione voluptatem sequi nesciunt, neque porro quisquam est, qui dolorem ipsum, quia dolor sit amet consectetur adipisci velit, sed quia non numquam eius modi tempora incidunt, ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit, qui in ea voluptate velit esse, quam nihil molestiae consequatur, vel illum, qui dolorem eum fugiat, quo voluptas nulla pariatur?
18+
19+
At vero eos et accusamus et iusto odio dignissimos ducimus, qui blanditiis praesentium voluptatum deleniti atque corrupti, quos dolores et quas molestias excepturi sint, obcaecati cupiditate non provident, similique sunt in culpa, qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio, cumque nihil impedit, quo minus id, quod maxime placeat, facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet, ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.

0 commit comments

Comments
 (0)