Skip to content

Commit 8fe5c43

Browse files
Initial commit
0 parents  commit 8fe5c43

19 files changed

+517
-0
lines changed

.gitignore

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

Gemfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
source "https://rubygems.org"
2+
3+
gem "github-pages", group: :jekyll_plugins
4+
5+
gem "tzinfo-data"
6+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
7+
8+
# If you have any plugins, put them here!
9+
group :jekyll_plugins do
10+
gem "jekyll-paginate"
11+
gem "jekyll-sitemap"
12+
gem "jekyll-gist"
13+
gem "jekyll-feed"
14+
gem "jemoji"
15+
gem "jekyll-include-cache"
16+
gem "jekyll-algolia"
17+
end

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Minimal Mistakes remote theme starter
2+
3+
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).
4+
5+
Contains basic configuration to get you a site with:
6+
7+
- Sample posts.
8+
- Sample top navigation.
9+
- Sample author sidebar with social links.
10+
- Sample footer links.
11+
- Paginated home page.
12+
- Archive pages for posts grouped by year, category, and tag.
13+
- Sample about page.
14+
- Sample 404 page.
15+
- Site wide search.
16+
17+
Replace sample content with your own and [configure as necessary](https://mmistakes.github.io/minimal-mistakes/docs/configuration/).
18+
19+
---
20+
21+
## Troubleshooting
22+
23+
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:
24+
25+
- [Ruby 101](https://jekyllrb.com/docs/ruby-101/)
26+
- [Setting up a Jekyll site with GitHub Pages](https://jekyllrb.com/docs/github-pages/)
27+
- [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.

_config.yml

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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: MM
17+
email:
18+
description: >- # this means to ignore newlines until "baseurl:"
19+
Write an awesome description for your new site here. You can edit this
20+
line in _config.yml. It will appear in your document head meta (for
21+
Google search results) and in your feed.xml site description.
22+
twitter_username: username
23+
github_username: username
24+
minimal_mistakes_skin: default
25+
search: true
26+
27+
# Build settings
28+
markdown: kramdown
29+
remote_theme: mmistakes/minimal-mistakes
30+
# Outputting
31+
permalink: /:categories/:title/
32+
paginate: 5 # amount of posts to show
33+
paginate_path: /page:num/
34+
timezone: # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
35+
36+
include:
37+
- _pages
38+
39+
# Exclude from processing.
40+
# The following items will not be processed, by default. Create a custom list
41+
# to override the default setting.
42+
# exclude:
43+
# - Gemfile
44+
# - Gemfile.lock
45+
# - node_modules
46+
# - vendor/bundle/
47+
# - vendor/cache/
48+
# - vendor/gems/
49+
# - vendor/ruby/
50+
51+
# Plugins (previously gems:)
52+
plugins:
53+
- jekyll-paginate
54+
- jekyll-sitemap
55+
- jekyll-gist
56+
- jekyll-feed
57+
- jemoji
58+
- jekyll-include-cache
59+
60+
author:
61+
name : "First Lastname"
62+
avatar : "/assets/images/bio-photo.jpg"
63+
bio : "My awesome biography constrained to a sentence or two goes here."
64+
links:
65+
- label: "Website"
66+
icon: "fas fa-fw fa-link"
67+
url: "https://"
68+
- label: "Twitter"
69+
icon: "fab fa-fw fa-twitter-square"
70+
url: "https://twitter.com/"
71+
- label: "GitHub"
72+
icon: "fab fa-fw fa-github"
73+
url: "https://github.com/"
74+
- label: "Instagram"
75+
icon: "fab fa-fw fa-instagram"
76+
url: "https://instagram.com/"
77+
78+
footer:
79+
links:
80+
- label: "Twitter"
81+
icon: "fab fa-fw fa-twitter-square"
82+
url: "https://twitter.com/"
83+
- label: "GitHub"
84+
icon: "fab fa-fw fa-github"
85+
url: "https://github.com/"
86+
- label: "Instagram"
87+
icon: "fab fa-fw fa-instagram"
88+
url: "https://instagram.com/"
89+
90+
defaults:
91+
# _posts
92+
- scope:
93+
path: ""
94+
type: posts
95+
values:
96+
layout: single
97+
author_profile: true
98+
read_time: true
99+
comments: true
100+
share: true
101+
related: true
102+
# _pages
103+
- scope:
104+
path: "_pages"
105+
type: pages
106+
values:
107+
layout: single
108+
author_profile: true
109+
110+
category_archive:
111+
type: liquid
112+
path: /categories/
113+
tag_archive:
114+
type: liquid
115+
path: /tags/

_data/navigation.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
main:
2+
- title: "Posts"
3+
url: /posts/
4+
- title: "Categories"
5+
url: /categories/
6+
- title: "Tags"
7+
url: /tags/
8+
- title: "About"
9+
url: /about/

_pages/404.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "Page Not Found"
3+
excerpt: "Page not found. Your pixels are in another canvas."
4+
sitemap: false
5+
permalink: /404.html
6+
---
7+
8+
Sorry, but the page you were trying to view does not exist.

_pages/about.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
permalink: /about/
3+
title: "About"
4+
---
5+
6+
Tempor velit sint sunt ipsum tempor enim ad qui ullamco. Est dolore anim ad velit duis dolore minim sunt aliquip amet commodo labore. Ut eu pariatur aute ea aute excepteur laborum. Esse ea esse excepteur minim mollit qui cillum excepteur ex dolore magna. Labore deserunt fugiat incididunt incididunt sint ea. Consequat dolore aute laboris quis proident quis non et est consectetur ex eiusmod sit culpa.
7+
8+
Cupidatat ea do et in excepteur in. Ad nostrud ut est esse eu duis ea sunt eiusmod. Aliquip tempor veniam sint elit fugiat. Velit incididunt laboris amet incididunt labore dolore irure velit excepteur commodo deserunt laborum. Consectetur eu fugiat veniam veniam Lorem labore magna eiusmod. Ea occaecat reprehenderit pariatur consectetur minim labore ut aliquip.

_pages/category-archive.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Posts by Category"
3+
layout: categories
4+
permalink: /categories/
5+
author_profile: true
6+
---

_pages/tag-archive.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Posts by Tag"
3+
permalink: /tags/
4+
layout: tags
5+
author_profile: true
6+
---

_pages/year-archive.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Posts by Year"
3+
permalink: /posts/
4+
layout: posts
5+
author_profile: true
6+
---

0 commit comments

Comments
 (0)