Skip to content

Commit aab5f49

Browse files
Initial Commit
0 parents  commit aab5f49

File tree

8 files changed

+142
-0
lines changed

8 files changed

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

_config.yml

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
title: The Secure Blog
2+
3+
description: >- # this means to ignore newlines until "baseurl:"
4+
This is my blog, where I post stuff. Thats it.
5+
#twitter_username:
6+
github_username: SuperSecureHuman
7+
minimal_mistakes_skin: dark
8+
search: true
9+
10+
#Build settings
11+
markdown: kramdown
12+
remote_theme: mmistakes/minimal-mistakes
13+
14+
#outputting
15+
permalink: /:categories/:title/
16+
paginate: 5
17+
paginate_path: "/page:num/"
18+
timezone: Asia/Kolkata
19+
20+
include:
21+
- _pages
22+
23+
plugins:
24+
- jekyll-paginate
25+
- jekyll-sitemap
26+
- jekyll-gist
27+
- jekyll-feed
28+
- jemoji
29+
- jekyll-include-cache
30+
31+
author:
32+
name : "Dilip Parasu"
33+
avatar : "/assets/images/bio-photo.jpg"
34+
bio : "Tensors go brrr"
35+
links:
36+
- label: "Website"
37+
icon: "fas fa-fw fa-link"
38+
url: "https://"
39+
- label: "Twitter"
40+
icon: "fab fa-fw fa-twitter-square"
41+
url: "https://twitter.com/TheSecureHuman"
42+
- label: "GitHub"
43+
icon: "fab fa-fw fa-github"
44+
url: "https://github.com/SuperSecureHuman/"
45+
- label: "Instagram"
46+
icon: "fab fa-fw fa-instagram"
47+
url: "https://www.instagram.com/supersecurehuman/"
48+
49+
footer:
50+
links:
51+
- label: "Twitter"
52+
icon: "fab fa-fw fa-twitter-square"
53+
url: "https://twitter.com/TheSecureHuman"
54+
- label: "GitHub"
55+
icon: "fab fa-fw fa-github"
56+
url: "https://github.com/SuperSecureHuman/"
57+
- label: "Instagram"
58+
icon: "fab fa-fw fa-instagram"
59+
url: "https://www.instagram.com/supersecurehuman/"
60+
61+
defaults:
62+
# _posts
63+
- scope:
64+
path: "_posts"
65+
type: posts
66+
values:
67+
layout: single
68+
author_profile: true
69+
read_time: false
70+
comments: false
71+
share: false
72+
related: false
73+
# _pages
74+
- scope:
75+
path: "_pages"
76+
type: pages
77+
values:
78+
layout: single
79+
author_profile: true

_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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
permalink: /about/
3+
title: "About"
4+
---
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: "Welcome to Jekyll!"
3+
date: 2022-10-03T15:34:30-04:00
4+
categories:
5+
- blog
6+
tags:
7+
- Jekyll
8+
- update
9+
---
10+
11+
Ok, so did this work?
12+
13+
```python
14+
print("Meow World!")
15+
```

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

index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
# Edit theme's home layout instead if you wanna make some changes
3+
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
4+
layout: home
5+
author_profile: true
6+
---

0 commit comments

Comments
 (0)