Skip to content

Commit a39b7a9

Browse files
committed
First Commit
0 parents  commit a39b7a9

File tree

675 files changed

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

675 files changed

+34143
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = false
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitattributes

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
assets/fonts/* linguist-vendored
2+
assets/js/main.min.js linguist-vendored
3+
assets/js/lunr/* linguist-vendored
4+
assets/js/plugins/* linguist-vendored
5+
assets/js/vendor/* linguist-vendored
6+
_sass/minimal-mistakes/vendor/* linguist-vendored

.github/CONTRIBUTING.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Contributing
2+
3+
Having trouble working with the theme? Found a typo in the documentation? Interested in adding a feature or [fixing a bug](https://github.com/mmistakes/minimal-mistakes/issues)? Then by all means [submit an issue](https://github.com/mmistakes/minimal-mistakes/issues/new) or [pull request](https://help.github.com/articles/using-pull-requests/). If this is your first pull request, it may be helpful to read up on the [GitHub Flow](https://guides.github.com/introduction/flow/) first.
4+
5+
Minimal Mistakes has been designed as a base for you to customize and fit your site's unique needs. Please keep this in mind when requesting features and/or submitting pull requests. If it's not something that most people will use, I probably won't consider it. When in doubt ask.
6+
7+
This goes for author sidebar links and "share button" additions -- I have no intention of merging in every possibly option, the essentials are there to get you started :smile:.
8+
9+
## Pull Requests
10+
11+
When submitting a pull request:
12+
13+
1. Clone the repo.
14+
2. Create a branch off of `master` and give it a meaningful name (e.g. `my-awesome-new-feature`) and describe the feature or fix.
15+
3. Open a pull request on GitHub.

.github/ISSUE_TEMPLATE.md

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!--
2+
Before submitting please search open and closed issues at
3+
https://github.com/mmistakes/minimal-mistakes/issues to avoid duplication.
4+
5+
Feel free to use the following as a template and remove or add fields as you
6+
see fit. You can convert `[ ]` into `[x]` completed check boxes.
7+
-->
8+
9+
- [ ] This is a question about using the theme.
10+
- [ ] This is a feature request or enhancement.
11+
- [ ] I believe this to be a bug with the theme.
12+
- [ ] I am using the latest version of the theme.
13+
- [ ] I have updated all gems with `bundle update`.
14+
- [ ] I have tested locally with `bundle exec jekyll build`.
15+
16+
---
17+
18+
## Environment informations
19+
20+
<!--
21+
Please include theme version, Jekyll version, whether you are hosting with
22+
GitHub Pages, and the operating system you are on or tested with.
23+
-->
24+
25+
- **Minimal Mistakes version:**
26+
- **Jekyll version:**
27+
- **GitHub Pages hosted:** yes/no
28+
- **Operating system:**
29+
30+
---
31+
32+
## Expected behavior
33+
34+
<!--
35+
Describe the intended output or what you expected to see.
36+
-->
37+
38+
## Steps to reproduce the behavior
39+
40+
<!--
41+
Include a link to a public repository or ZIP file so that the behavior or bug
42+
can easily be reproduced. Being able to see your actual files helps with
43+
troubleshooting as most issues stem from invalid/missing YAML Front Matter, a
44+
mis-configured _config.sys file, or problematic site content.
45+
46+
Describe the steps you took for this problem to exist. Such as: you cloned the
47+
theme, customized _config.yml, added your own posts, and started up a Jekyll
48+
server locally.
49+
50+
If an error occurred on GitHub Pages when pushing, please test a local version
51+
following these setup instructions:
52+
https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/
53+
54+
Then provide a complete log by running `bundle exec jekyll build --trace --verbose`
55+
and include this output in the filed issue.
56+
57+
Screenshots can also be included if they help illustrate a behavior.
58+
-->

.github/stale.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 30
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 7
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- "Status: Accepted"
8+
- "Status: Under Consideration"
9+
- "Status: Review Needed"
10+
# Label to use when marking an issue as stale
11+
staleLabel: "Status: Stale"
12+
# Comment to post when marking an issue as stale. Set to `false` to disable
13+
markComment: |
14+
This issue has been automatically marked as stale because it has not had recent activity.
15+
16+
If this is a **bug** and you can still reproduce this error on the `master` branch, please reply with any additional information you have about it in order to keep the issue open.
17+
18+
If this is a feature request, please consider whether it can be accomplished in another way. If it cannot, please elaborate on why it is core to this project and why you feel more than 80% of users would find this beneficial.
19+
20+
This issue will automatically be closed in 7 days if no further activity occurs. Thank you for all your contributions.
21+
# Comment to post when closing a stale issue. Set to `false` to disable
22+
closeComment: false

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
*.gem
2+
*.sublime-project
3+
*.sublime-workspace
4+
.bundle
5+
.DS_Store
6+
.jekyll-metadata
7+
.sass-cache
8+
_asset_bundler_cache
9+
_site
10+
codekit-config.json
11+
example/_site
12+
Gemfile.lock
13+
node_modules
14+
npm-debug.log*

0 commit comments

Comments
 (0)