Skip to content

Commit 71f20eb

Browse files
committed
feat: add jekyll theme
1 parent b7093ed commit 71f20eb

9 files changed

Lines changed: 245 additions & 0 deletions

File tree

.gitignore

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

404.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
permalink: /404.html
3+
layout: page
4+
---
5+
6+
<style type="text/css" media="screen">
7+
.container {
8+
margin: 10px auto;
9+
max-width: 600px;
10+
text-align: center;
11+
}
12+
h1 {
13+
margin: 30px 0;
14+
font-size: 4em;
15+
line-height: 1;
16+
letter-spacing: -1px;
17+
}
18+
</style>
19+
20+
<div class="container">
21+
<h1>404</h1>
22+
23+
<p><strong>Page not found :(</strong></p>
24+
<p>The requested page could not be found.</p>
25+
</div>

Gemfile

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
source "https://rubygems.org"
2+
# Hello! This is where you manage which Jekyll version is used to run.
3+
# When you want to use a different version, change it below, save the
4+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5+
#
6+
# bundle exec jekyll serve
7+
#
8+
# This will help ensure the proper Jekyll version is running.
9+
# Happy Jekylling!
10+
gem "jekyll", "~> 4.0.0"
11+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12+
gem "minima", "~> 2.5"
13+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
14+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
15+
# gem "github-pages", group: :jekyll_plugins
16+
# If you have any plugins, put them here!
17+
group :jekyll_plugins do
18+
gem "jekyll-feed", "~> 0.12"
19+
end
20+
21+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
22+
# and associated library.
23+
# install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
24+
# gem "tzinfo", "~> 1.2"
25+
# gem "tzinfo-data"
26+
# end
27+
28+
# Performance-booster for watching directories on Windows
29+
gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
30+
31+
gem "moving"

Gemfile.lock

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.3.5)
8+
em-websocket (0.5.3)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0)
11+
eventmachine (1.2.7)
12+
ffi (1.17.2-aarch64-linux-gnu)
13+
ffi (1.17.2-aarch64-linux-musl)
14+
ffi (1.17.2-arm-linux-gnu)
15+
ffi (1.17.2-arm-linux-musl)
16+
ffi (1.17.2-arm64-darwin)
17+
ffi (1.17.2-x86_64-darwin)
18+
ffi (1.17.2-x86_64-linux-gnu)
19+
ffi (1.17.2-x86_64-linux-musl)
20+
forwardable-extended (2.6.0)
21+
http_parser.rb (0.8.0)
22+
i18n (1.14.7)
23+
concurrent-ruby (~> 1.0)
24+
jekyll (4.0.1)
25+
addressable (~> 2.4)
26+
colorator (~> 1.0)
27+
em-websocket (~> 0.5)
28+
i18n (>= 0.9.5, < 2)
29+
jekyll-sass-converter (~> 2.0)
30+
jekyll-watch (~> 2.0)
31+
kramdown (~> 2.1)
32+
kramdown-parser-gfm (~> 1.0)
33+
liquid (~> 4.0)
34+
mercenary (~> 0.3.3)
35+
pathutil (~> 0.9)
36+
rouge (~> 3.0)
37+
safe_yaml (~> 1.0)
38+
terminal-table (~> 1.8)
39+
jekyll-feed (0.17.0)
40+
jekyll (>= 3.7, < 5.0)
41+
jekyll-sass-converter (2.2.0)
42+
sassc (> 2.0.1, < 3.0)
43+
jekyll-seo-tag (2.8.0)
44+
jekyll (>= 3.8, < 5.0)
45+
jekyll-watch (2.2.1)
46+
listen (~> 3.0)
47+
kramdown (2.4.0)
48+
rexml
49+
kramdown-parser-gfm (1.1.0)
50+
kramdown (~> 2.0)
51+
liquid (4.0.4)
52+
listen (3.9.0)
53+
rb-fsevent (~> 0.10, >= 0.10.3)
54+
rb-inotify (~> 0.9, >= 0.9.10)
55+
mercenary (0.3.6)
56+
minima (2.5.1)
57+
jekyll (>= 3.5, < 5.0)
58+
jekyll-feed (~> 0.9)
59+
jekyll-seo-tag (~> 2.1)
60+
moving (0.3.5)
61+
jekyll (~> 4.0.0)
62+
jekyll-feed (~> 0.9)
63+
jekyll-seo-tag (~> 2.1)
64+
pathutil (0.16.2)
65+
forwardable-extended (~> 2.6)
66+
public_suffix (5.1.1)
67+
rb-fsevent (0.11.2)
68+
rb-inotify (0.11.1)
69+
ffi (~> 1.0)
70+
rexml (3.4.1)
71+
rouge (3.30.0)
72+
safe_yaml (1.0.5)
73+
sassc (2.4.0)
74+
ffi (~> 1.9)
75+
terminal-table (1.8.0)
76+
unicode-display_width (~> 1.1, >= 1.1.1)
77+
unicode-display_width (1.8.0)
78+
wdm (0.1.1)
79+
80+
PLATFORMS
81+
aarch64-linux-gnu
82+
aarch64-linux-musl
83+
arm-linux-gnu
84+
arm-linux-musl
85+
arm64-darwin
86+
x86_64-darwin
87+
x86_64-linux-gnu
88+
x86_64-linux-musl
89+
90+
DEPENDENCIES
91+
jekyll (~> 4.0.0)
92+
jekyll-feed (~> 0.12)
93+
minima (~> 2.5)
94+
moving
95+
wdm (~> 0.1.1)
96+
97+
BUNDLED WITH
98+
2.6.8

_config.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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+
# If you need help with YAML syntax, here are some quick references for you:
12+
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13+
# https://learnxinyminutes.com/docs/yaml/
14+
#
15+
# Site settings
16+
# These are used to personalize your new site. If you look in the HTML files,
17+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18+
# You can create any custom variable you would like, and they will be accessible
19+
# in the templates via {{ site.myvariable }}.
20+
21+
title: Barun Pradhan
22+
author: Barun Pradhan
23+
email: barunpradhan987@gmail.com
24+
description: >- # this means to ignore newlines until "baseurl:"
25+
Learning.
26+
baseurl: "" # the subpath of your site, e.g. /blog
27+
url: barunlslick.github.io
28+
github_username: barunslick
29+
30+
# Build settings
31+
remote-theme: huangyz0918/moving
32+
plugins:
33+
- jekyll-feed
34+
35+
36+
# Exclude from processing.
37+
# The following items will not be processed, by default.
38+
# Any item listed under the `exclude:` key here will be automatically added to
39+
# the internal "default list".
40+
#
41+
# Excluded items can be processed by explicitly listing the directories or
42+
# their entries' file path in the `include:` list.
43+
#
44+
# exclude:
45+
# - .sass-cache/
46+
# - .jekyll-cache/
47+
# - gemfiles/
48+
# - Gemfile
49+
# - Gemfile.lock
50+
# - node_modules/
51+
# - vendor/bundle/
52+
# - vendor/cache/
53+
# - vendor/gems/
54+
# - vendor/ruby/

_posts/2025-04-28-hello.markdown

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: post
3+
title: "Hello"
4+
date: 2025-04-28 21:18:45 +0545
5+
categories: jekyll update
6+
---
7+
8+
Hello, hopefully adding new pages here.

about.markdown

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
layout: page
3+
title: About
4+
permalink: /about/
5+
---
6+
7+
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
8+
9+
You can find the source code for Minima at GitHub:
10+
[jekyll][jekyll-organization] /
11+
[minima](https://github.com/jekyll/minima)
12+
13+
You can find the source code for Jekyll at GitHub:
14+
[jekyll][jekyll-organization] /
15+
[jekyll](https://github.com/jekyll/jekyll)
16+
17+
18+
[jekyll-organization]: https://github.com/jekyll

docs/_config.yml

Whitespace-only changes.

index.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
# Feel free to add content and custom Front Matter to this file.
3+
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
4+
5+
layout: home
6+
---

0 commit comments

Comments
 (0)