Skip to content

Commit ad4fd29

Browse files
committed
Added modifications for theme.
1 parent 16adf19 commit ad4fd29

23 files changed

+473
-136
lines changed

docs/.gitignore renamed to .gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ _site
22
.sass-cache
33
.jekyll-cache
44
.jekyll-metadata
5-
vendor
65
Gemfile.lock

docs/Gemfile renamed to Gemfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,19 @@ source "https://rubygems.org"
99
# Happy Jekylling!
1010
#gem "jekyll", "~> 4.4.1"
1111
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12-
gem "minima", "~> 2.5"
12+
#gem "minima", "~> 2.5"
1313
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
1414
# uncomment the line below. To upgrade, run `bundle update github-pages`.
1515
gem "github-pages", "~> 232", group: :jekyll_plugins
1616
# If you have any plugins, put them here!
1717
group :jekyll_plugins do
1818
gem "jekyll-feed", "~> 0.12"
19+
gem "jekyll-paginate"
20+
gem "jekyll-sitemap"
21+
gem "jekyll-gist"
22+
gem "jemoji"
23+
gem "jekyll-include-cache"
24+
gem "jekyll-algolia"
1925
end
2026

2127
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem

_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+
---

_posts/2010-01-07-post-modified.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "Post: Modified Date"
3+
last_modified_at: 2016-03-09T16:20:02-05:00
4+
categories:
5+
- Blog
6+
tags:
7+
- Post Formats
8+
- readability
9+
- standard
10+
---
11+
12+
This post has been updated and should show a modified date if used in a layout.
13+
14+
All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, "Oh, why can't you remain like this for ever!" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end.

0 commit comments

Comments
 (0)