Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSecureHuman committed Oct 3, 2022
0 parents commit aab5f49
Show file tree
Hide file tree
Showing 8 changed files with 142 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
_site
.sass-cache
.jekyll-metadata
Gemfile.lock
79 changes: 79 additions & 0 deletions _config.yml
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
9 changes: 9 additions & 0 deletions _data/navigation.yml
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/
8 changes: 8 additions & 0 deletions _pages/404.md
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.
4 changes: 4 additions & 0 deletions _pages/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
permalink: /about/
title: "About"
---
15 changes: 15 additions & 0 deletions _posts/2022-10-03-welcome-to-jekyll.md
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!")
```
17 changes: 17 additions & 0 deletions gemfile
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
6 changes: 6 additions & 0 deletions index.html
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
---

0 comments on commit aab5f49

Please sign in to comment.