Skip to content

Commit

Permalink
add gemfile and some error fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
akaak committed Nov 6, 2024
1 parent 2a61a6e commit bf5e81c
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ _drafts
.ruby-version
.sass-cache

README-AK.md

# Numerous always-ignore extensions
*.diff
*.err
Expand Down
13 changes: 13 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# frozen_string_literal: true

source "https://rubygems.org"

# gem "rails"

gem 'jekyll-paginate'

gem "kramdown-parser-gfm"

gem "jekyll-watch"

gem "webrick", "~> 1.9"
33 changes: 33 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
GEM
remote: https://rubygems.org/
specs:
ffi (1.17.0)
ffi (1.17.0-arm64-darwin)
jekyll-paginate (1.1.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (2.4.0)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rexml (3.3.9)
webrick (1.9.0)

PLATFORMS
arm64-darwin-23
ruby

DEPENDENCIES
jekyll-paginate
jekyll-watch
kramdown-parser-gfm
webrick (~> 1.9)

BUNDLED WITH
2.5.23
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Blog's static site built using [Jekyll](https://jekyllrb.com/) and Github [Pages

[@akaAK](https://github.com/akaak)


10 changes: 8 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,14 @@ url: http://akaak.github.io/blog/
baseurl: https://akaak.github.io/blog

# added for Jekyll v3.0
gems: [jekyll-paginate]
paginate_path: "page:num"
#gems: [jekyll-paginate]
#paginate_path: "page:num"

plugins:
- jekyll-paginate

paginate: 5 # Number of posts per page
# paginate_path: "/page:num/" # URL structure for paginated pages

# Assets
#
Expand Down
2 changes: 2 additions & 0 deletions glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ There are good number of resources on the Internet that give provide a glossary

- [Python Learners Glossary](https://github.com/catherinedevlin/python_learners_glossary) from [@catherinedevlin](https://github.com/catherinedevlin)

- [Node.js Glossary](https://github.com/nodejs/node/blob/main/glossary.md)

- [git glossary](https://www.kernel.org/pub/software/scm/git/docs/gitglossary.html)

- data.gov glossary of [terms](https://www.data.gov/glossary)
Expand Down
18 changes: 9 additions & 9 deletions styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
// Designed, built, and released under MIT license by @mdo. Learn more at
// https://github.com/poole/poole.

@import "base";
@import "type";
@import "syntax";
@import "code";
@import "layout";
@import "masthead";
@import "posts";
@import "pagination";
@import "message";
@use "base";
@use "type";
@use "syntax";
@use "code";
@use "layout";
@use "masthead";
@use "posts";
@use "pagination";
@use "message";

0 comments on commit bf5e81c

Please sign in to comment.