-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit aab5f49
Showing
8 changed files
with
142 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
_site | ||
.sass-cache | ||
.jekyll-metadata | ||
Gemfile.lock |
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
title: The Secure Blog | ||
email: [email protected] | ||
description: >- # this means to ignore newlines until "baseurl:" | ||
This is my blog, where I post stuff. Thats it. | ||
#twitter_username: | ||
github_username: SuperSecureHuman | ||
minimal_mistakes_skin: dark | ||
search: true | ||
|
||
#Build settings | ||
markdown: kramdown | ||
remote_theme: mmistakes/minimal-mistakes | ||
|
||
#outputting | ||
permalink: /:categories/:title/ | ||
paginate: 5 | ||
paginate_path: "/page:num/" | ||
timezone: Asia/Kolkata | ||
|
||
include: | ||
- _pages | ||
|
||
plugins: | ||
- jekyll-paginate | ||
- jekyll-sitemap | ||
- jekyll-gist | ||
- jekyll-feed | ||
- jemoji | ||
- jekyll-include-cache | ||
|
||
author: | ||
name : "Dilip Parasu" | ||
avatar : "/assets/images/bio-photo.jpg" | ||
bio : "Tensors go brrr" | ||
links: | ||
- label: "Website" | ||
icon: "fas fa-fw fa-link" | ||
url: "https://" | ||
- label: "Twitter" | ||
icon: "fab fa-fw fa-twitter-square" | ||
url: "https://twitter.com/TheSecureHuman" | ||
- label: "GitHub" | ||
icon: "fab fa-fw fa-github" | ||
url: "https://github.com/SuperSecureHuman/" | ||
- label: "Instagram" | ||
icon: "fab fa-fw fa-instagram" | ||
url: "https://www.instagram.com/supersecurehuman/" | ||
|
||
footer: | ||
links: | ||
- label: "Twitter" | ||
icon: "fab fa-fw fa-twitter-square" | ||
url: "https://twitter.com/TheSecureHuman" | ||
- label: "GitHub" | ||
icon: "fab fa-fw fa-github" | ||
url: "https://github.com/SuperSecureHuman/" | ||
- label: "Instagram" | ||
icon: "fab fa-fw fa-instagram" | ||
url: "https://www.instagram.com/supersecurehuman/" | ||
|
||
defaults: | ||
# _posts | ||
- scope: | ||
path: "_posts" | ||
type: posts | ||
values: | ||
layout: single | ||
author_profile: true | ||
read_time: false | ||
comments: false | ||
share: false | ||
related: false | ||
# _pages | ||
- scope: | ||
path: "_pages" | ||
type: pages | ||
values: | ||
layout: single | ||
author_profile: true |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
main: | ||
- title: "Posts" | ||
url: /posts/ | ||
- title: "Categories" | ||
url: /categories/ | ||
- title: "Tags" | ||
url: /tags/ | ||
- title: "About" | ||
url: /about/ |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: "Page Not Found" | ||
excerpt: "Page not found. Your pixels are in another canvas." | ||
sitemap: false | ||
permalink: /404.html | ||
--- | ||
|
||
Sorry, but the page you were trying to view does not exist. |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
permalink: /about/ | ||
title: "About" | ||
--- |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: "Welcome to Jekyll!" | ||
date: 2022-10-03T15:34:30-04:00 | ||
categories: | ||
- blog | ||
tags: | ||
- Jekyll | ||
- update | ||
--- | ||
|
||
Ok, so did this work? | ||
|
||
```python | ||
print("Meow World!") | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "github-pages", group: :jekyll_plugins | ||
|
||
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 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
# Edit theme's home layout instead if you wanna make some changes | ||
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults | ||
layout: home | ||
author_profile: true | ||
--- |