-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from alexandre-touret/feature/minimal-mistakes
feature/minimal mistakes
- Loading branch information
Showing
581 changed files
with
1,931 additions
and
4,117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
_site | ||
.sass-cache | ||
.jekyll-metadata | ||
Gemfile.lock | ||
vendor/ | ||
.bundle/ | ||
.DS_Store | ||
.bundle | ||
.jekyll-cache | ||
.sass-cache | ||
Gemfile.lock | ||
_site | ||
*.gem | ||
vendor | ||
|
||
vendor |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "github-pages", group: :jekyll_plugins | ||
gem 'jekyll-sitemap' | ||
gem 'jekyll-feed' | ||
gemspec | ||
|
||
gem "tzinfo-data" | ||
gem "wdm", "~> 0.1.0" if Gem.win_platform? | ||
|
||
# If you have any plugins, put them here! | ||
group :jekyll_plugins do | ||
gem "jekyll-paginate" | ||
gem "jekyll-sitemap" | ||
gem "jekyll-gist" | ||
gem "jekyll-feed" | ||
gem "jemoji" | ||
gem "jekyll-include-cache" | ||
gem "jekyll-algolia" | ||
end |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,27 @@ | ||
Personal blog | ||
# Minimal Mistakes remote theme starter | ||
|
||
Click [**Use this template**](https://github.com/mmistakes/mm-github-pages-starter/generate) button above for the quickest method of getting started with the [Minimal Mistakes Jekyll theme](https://github.com/mmistakes/minimal-mistakes). | ||
|
||
Contains basic configuration to get you a site with: | ||
|
||
- Sample posts. | ||
- Sample top navigation. | ||
- Sample author sidebar with social links. | ||
- Sample footer links. | ||
- Paginated home page. | ||
- Archive pages for posts grouped by year, category, and tag. | ||
- Sample about page. | ||
- Sample 404 page. | ||
- Site wide search. | ||
|
||
Replace sample content with your own and [configure as necessary](https://mmistakes.github.io/minimal-mistakes/docs/configuration/). | ||
|
||
--- | ||
|
||
## Troubleshooting | ||
|
||
If you have a question about using Jekyll, start a discussion on the [Jekyll Forum](https://talk.jekyllrb.com/) or [StackOverflow](https://stackoverflow.com/questions/tagged/jekyll). Other resources: | ||
|
||
- [Ruby 101](https://jekyllrb.com/docs/ruby-101/) | ||
- [Setting up a Jekyll site with GitHub Pages](https://jekyllrb.com/docs/github-pages/) | ||
- [Configuring GitHub Metadata](https://github.com/jekyll/github-metadata/blob/master/docs/configuration.md#configuration) to work properly when developing locally and avoid `No GitHub API authentication could be found. Some fields may be missing or have incorrect data.` warnings. |
Oops, something went wrong.