Skip to content

Commit 02afa98

Browse files
committed
Initial commit
0 parents  commit 02afa98

File tree

119 files changed

+9181
-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.

119 files changed

+9181
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata
4+
node_modules
5+
Gemfile.lock

404.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="container text-center">
6+
<h1>404</h1>
7+
8+
<p><strong>Page not found :(</strong></p>
9+
<p>The requested page could not be found.</p>
10+
</div>

CONTRIBUTING.md

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# Contributing to this project
2+
3+
* [Contributors Agreement](#user-content-contributors-agreement)
4+
* [Introduction](#Introduction)
5+
* [I don't want to read this whole thing I just have a question!!!](#user-content-i-dont-want-to-read-this-whole-thing-i-just-have-a-question)
6+
* [How Can I Contribute?](#user-content-how-can-i-contribute)
7+
* [Reporting Bugs](#user-content-reporting-bugs)
8+
* [Suggesting Enhancements](#user-content-suggesting-enhancements)
9+
* [Creating Pull Requests](#user-content-creating-pull-requests)
10+
11+
## Contributors Agreement
12+
13+
By submitting patches to this project you agree to allow them to be redistributed under the project's license, according to the normal forms and usages of the open-source community.
14+
15+
## Introduction
16+
17+
First off, thank you for considering contributing to this project. It's people like you that make it such a great tool.
18+
19+
Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue, assessing changes, and helping you finalize your pull requests.
20+
21+
This is an open source project and we love to receive contributions from our community — you! There are many ways to contribute, from writing tutorials or blog posts, improving the documentation, submitting bug reports and feature requests or writing code which can be incorporated into the main project itself.
22+
23+
### I don't want to read this whole thing I just have a question!!!
24+
25+
We currently allow our users to use the issue tracker for support questions. But please be wary that maintaining an open source project can take a lot of time from the maintainers. If asking for a support question, state it clearly and take the time to explain your problem properly. Also, if your problem is not strictly related to this project we recommend you to use Stack Overlow instead.
26+
27+
## How Can I Contribute?
28+
29+
### Reporting Bugs
30+
31+
Before creating bug reports, please check the existing bug reports as you might find out that you don't need to create one. When you are creating a bug report, please include as many details as possible.
32+
33+
#### How Do I Submit A (Good) Bug Report?
34+
35+
Bugs are tracked as [GitHub issues](https://guides.github.com/features/issues/). Create an issue on the project's repository and provide the following information.
36+
37+
Explain the problem and include additional details to help maintainers reproduce the problem:
38+
39+
* **Use a clear and descriptive title** for the issue to identify the problem.
40+
* **Describe the exact steps which reproduce the problem** in as many details as possible. For example, start by explaining how you used the project. When listing steps, **don't just say what you did, but explain how you did it**.
41+
* **Provide specific examples to demonstrate the steps**. It's always better to get more information. You can include links to files or GitHub projects, copy/pasteable snippets or even print screens or animated GIFS. If you're providing snippets in the issue, use [Markdown code blocks](https://help.github.com/articles/markdown-basics/#multiple-lines).
42+
* **Describe the behavior you observed after following the steps** and point out what exactly is the problem with that behavior.
43+
* **Explain which behavior you expected to see instead and why.**
44+
* **If the problem wasn't triggered by a specific action**, describe what you were doing before the problem happened and share more information using the guidelines below.
45+
46+
Provide more context by answering these questions:
47+
48+
* **Did the problem start happening recently** (e.g. after updating to a new version) or was this always a problem?
49+
* If the problem started happening recently, **can you reproduce the problem in an older version?** What's the most recent version in which the problem doesn't happen?
50+
* **Can you reliably reproduce the issue?** If not, provide details about how often the problem happens and under which conditions it normally happens.
51+
52+
Include details about your configuration and environment:
53+
54+
* **Which version of the project are you using?**
55+
* **What's the name and version of the OS you're using**?
56+
* **Any other information that could be useful about you environment**
57+
58+
### Suggesting Enhancements
59+
60+
This section guides you through submitting an enhancement suggestion for this project, including completely new features and minor improvements to existing functionality. Following these guidelines helps maintainers and the community understand your suggestion and find related suggestions.
61+
62+
Before creating enhancement suggestions, please check the list of enhancements suggestions in the issue tracker as you might find out that you don't need to create one. When you are creating an enhancement suggestion, please include as many details as possible.
63+
64+
#### How Do I Submit A (Good) Enhancement Suggestion?
65+
66+
Enhancement suggestions are tracked as [GitHub issues](https://guides.github.com/features/issues/). Create an issue on the project's repository and provide the following information:
67+
68+
* **Use a clear and descriptive title** for the issue to identify the suggestion.
69+
* **Provide a step-by-step description of the suggested enhancement** in as many details as possible.
70+
* **Provide specific examples to demonstrate the steps**. It's always better to get more information. You can include links to files or GitHub projects, copy/pasteable snippets or even print screens or animated GIFS. If you're providing snippets in the issue, use [Markdown code blocks](https://help.github.com/articles/markdown-basics/#multiple-lines).
71+
* **Describe the current behavior** and **explain which behavior you expected to see instead** and why.
72+
* **List some other similar projects where this enhancement exists.**
73+
* **Specify which version of the project you're using.**
74+
* **Specify the current environment you're using.** if this is a useful information.
75+
76+
### Creating Pull Requests
77+
78+
#### How Do I Submit A (Good) Pull Request?
79+
80+
* **Be warned that the contributors agreement displayed on top of this document is applicable as soon as you create a pull request**.
81+
* **Use a clear and descriptive title** for the pull request to state the improvement you made to the code or the bug you solved.
82+
* **Provide a link to the related issue** if the pull request is a follow up of an existing bug report or enhancement suggestion.
83+
* **Comment why this pull request represents an enhancement** and give a rationale explaining why you did it that way and not another way.
84+
* **Use the same coding style than the one used in this project**.
85+
* **Welcome suggestions from the maintainers to improve your pull request**.

Gemfile

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
#gem "jekyll", "~> 3.7.3"
12+
13+
14+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
15+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
16+
gem "github-pages", group: :jekyll_plugins

LICENSE.md

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

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# Boostrap 4 Github Pages
3+
4+
A [Bootstrap 4](https://getbootstrap.com/) template project for [Github Pages](https://pages.github.com/) and [Jekyll](https://jekyllrb.com/).
5+
6+
* A full Bootstrap 4 theme usable both on Github Pages and with a standalone Jekyll.
7+
* Recompiles Bootstrap from SCSS files, which allows to customize Bootstrap's variables and use Bootstrap themes.
8+
* Full support of Bootstrap's JavaScript plugins.
9+
* Supports all features of Github Pages and Jekyll.
10+
11+
[See the website for demonstration and documentation](https://nicolas-van.github.io/bootstrap-4-github-pages/).
12+
13+
## Contribution
14+
15+
[See the contribution guide.](./CONTRIBUTING.md)
16+
17+
## License
18+
19+
[See the license file.](./LICENSE.md)

_config.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: Bootstrap 4 Github Pages
17+
email: ""
18+
description: >- # this means to ignore newlines until "baseurl:"
19+
A Bootstrap 4 start up project for Jekyll and Github Pages
20+
#baseurl: "" # the subpath of your site, e.g. /blog
21+
#url: "" # the base hostname & protocol for your site, e.g. http://example.com
22+
#twitter_username: jekyllrb
23+
#github_username: jekyll
24+
25+
repository: "nicolas-van/bootstrap-4-github-pages"
26+
27+
# Build settings
28+
plugins:
29+
- jekyll-feed
30+
- jekyll-sitemap
31+
32+
# A list of the pages to display in the navigation bar
33+
header_pages:
34+
35+
# Exclude from processing.
36+
# The following items will not be processed, by default. Create a custom list
37+
# to override the default setting.
38+
exclude:
39+
- Gemfile
40+
- Gemfile.lock
41+
- node_modules
42+
- update_boostrap.sh

_includes/footer.html

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
<div class="py-5 border-top">
3+
<div class="container">
4+
5+
<p class="h5 mb-3">{{ site.title | escape }}</p>
6+
7+
<div class="row">
8+
9+
<div class="col-sm">
10+
<ul class="list-unstyled">
11+
<li>
12+
{%- if site.author -%}
13+
{{ site.author | escape }}
14+
{%- else -%}
15+
{{ site.title | escape }}
16+
{%- endif -%}
17+
</li>
18+
{%- if site.email -%}
19+
<li>
20+
<a href="mailto:{{ site.email }}">
21+
{{ site.email }}
22+
</a>
23+
</li>
24+
{%- endif -%}
25+
</ul>
26+
</div>
27+
28+
29+
<div class="col-sm text-right">
30+
<p>{{- site.description | escape -}}</p>
31+
32+
<p>
33+
<a href="https://nicolas-van.github.io/bootstrap-4-github-pages/">Powered by Bootstrap 4 Github Pages</a>
34+
</p>
35+
<p>
36+
<a href="https://github.com/nicolas-van/bootstrap-4-github-pages"><img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/nicolas-van/bootstrap-4-github-pages?style=social"></a>
37+
<p>
38+
</div>
39+
40+
</div>
41+
42+
</div>
43+
</div>

_includes/head.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
{%- seo -%}
6+
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
7+
{%- feed_meta -%}
8+
<script src="{{ "/assets/javascript/bootstrap/jquery.min.js" | relative_url }}"></script>
9+
<script src="{{ "/assets/javascript/bootstrap/bootstrap.bundle.min.js" | relative_url }}"></script>
10+
</head>

_includes/header.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
2+
<div class="container">
3+
<a class="navbar-brand" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
4+
5+
{%- assign page_paths = site.header_pages -%}
6+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
7+
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
8+
<span class="navbar-toggler-icon"></span>
9+
</button>
10+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
11+
<ul class="navbar-nav ml-auto">
12+
{%- for path in page_paths -%}
13+
{%- assign my_page = site.pages | where: "path", path | first -%}
14+
{%- if my_page.title -%}
15+
<li class="nav-item">
16+
<a class="nav-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
17+
</li>
18+
{%- endif -%}
19+
{% endfor -%}
20+
<li class="nav-item">
21+
<a class="nav-link" href="{{ site.github.repository_url }}">Fork me on Github</a>
22+
</li>
23+
</ul>
24+
</div>
25+
</div>
26+
</nav>

_layouts/default.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
3+
4+
{%- include head.html -%}
5+
6+
<body>
7+
8+
{%- include header.html -%}
9+
10+
<div class="py-5">
11+
<div class="container page-content">
12+
{{ content }}
13+
</div>
14+
</div>
15+
16+
{%- include footer.html -%}
17+
18+
</body>
19+
20+
</html>

_layouts/home.html

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div>
6+
7+
{%- if page.title -%}
8+
<header>
9+
<h1>{{ page.title }}</h1>
10+
</header>
11+
{%- endif -%}
12+
13+
<section>
14+
{{ content }}
15+
</section>
16+
17+
{%- if site.posts.size > 0 -%}
18+
<p class="h4">{{ page.list_title | default: "Posts" }}</p>
19+
<ul class="list-unstyled">
20+
{%- for post in site.posts -%}
21+
<li>
22+
<span class="text-muted">
23+
{%- assign date_format = "%b %-d, %Y" -%}
24+
{{ post.date | date: date_format }}
25+
</span>
26+
<p class="h5">
27+
<a href="{{ post.url | relative_url }}">
28+
{{ post.title | escape }}
29+
</a>
30+
</p>
31+
{%- if site.show_excerpts -%}
32+
{{ post.excerpt }}
33+
{%- endif -%}
34+
</li>
35+
{%- endfor -%}
36+
</ul>
37+
38+
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
39+
{%- endif -%}
40+
41+
</div>

_layouts/page.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
---
4+
<article>
5+
6+
<header>
7+
<h1>{{ page.title | escape }}</h1>
8+
</header>
9+
10+
<section>
11+
{{ content }}
12+
</section>
13+
14+
</article>

_layouts/post.html

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: default
3+
---
4+
<article>
5+
6+
<header>
7+
<h1>{{ page.title | escape }}</h1>
8+
<p class="text-muted">
9+
<time datetime="{{ page.date | date_to_xmlschema }}">
10+
{%- assign date_format = "%b %-d, %Y" -%}
11+
{{ page.date | date: date_format }}
12+
</time>
13+
{%- if page.author -%}
14+
• {{ page.author }}
15+
{%- endif -%}
16+
</p>
17+
</header>
18+
19+
<section>
20+
{{ content }}
21+
</section>
22+
23+
</article>

0 commit comments

Comments
 (0)