casjaysdev-jekyll-theme 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitattributes +0 -0
- data/.gitignore +96 -17
- data/.prettierrc.json +8 -0
- data/.vscode/settings.json +6 -0
- data/Gemfile +25 -15
- data/LICENSE.md +1 -1
- data/_config.yml +195 -105
- data/_data/nav/external.yml +1 -1
- data/_includes/ads/adsense.html +15 -0
- data/_includes/analytics/google.html +13 -0
- data/_includes/{casjaysdev/piwik.html → analytics/matomo.html} +5 -6
- data/_includes/casjays-footer.html +61 -43
- data/_includes/casjays-header.html +39 -1
- data/_includes/casjaysdev/clock.html +3 -12
- data/_includes/casjaysdev/eucookie.html +21 -30
- data/_includes/casjaysdev/legal.html +17 -38
- data/_includes/casjaysdev/rocketchat.html +3 -4
- data/_includes/casjaysdev/sharethis.html +6 -42
- data/_includes/casjaysdev/socialfooter.html +9 -85
- data/_includes/casjaysdev/sociallinks.html +51 -79
- data/_includes/casjaysdev/statcounter.html +8 -25
- data/_includes/casjaysdev/theme.html +9 -11
- data/_includes/casjaysdev/widgetbot.html +3 -1
- data/_includes/disqus.html +3 -7
- data/_includes/functions/blog.html +68 -0
- data/_includes/functions/default.html +3 -0
- data/{_pages → _includes/functions}/gallery/index.html +3 -5
- data/_includes/functions/gallery.html +44 -0
- data/_includes/functions/recipes.html +68 -0
- data/_includes/github.html +17 -7
- data/_includes/nav/external.html +10 -11
- data/_includes/nav/internal.html +14 -10
- data/_includes/nav/sidebars/right.html +2 -1
- data/_includes/nav/top.html +12 -19
- data/_includes/themes/blank/layouts/default.html +5 -20
- data/_includes/themes/blank/navigation.html +16 -18
- data/_includes/themes/hacker/layouts/default.html +32 -60
- data/_includes/themes/hacker/meta.html +2 -95
- data/_includes/themes/hacker/page_header.html +27 -0
- data/_layouts/default.html +32 -13
- data/_layouts/page.html +3 -3
- data/_layouts/post.html +1 -1
- data/_layouts/recipes.html +43 -0
- data/_pages/about/index.html +3 -5
- data/_pages/blog/catergories/catergories.html +6 -6
- data/_pages/blog/index.html +48 -44
- data/_pages/blog/tags/tags.html +6 -6
- data/_pages/contact/index.html +62 -160
- data/_pages/index.html +102 -7
- data/_pages/rss/index.xml +1 -0
- data/_posts/2021-07-31-welcome-to-your-new-site.md +14 -0
- data/_posts/2022-07-31-templates-update.md +14 -0
- data/_posts/2023-04-24-theme-rewrite.md +14 -0
- data/assets/css/bootstrap/bootstrap-icons.css +5994 -2002
- data/assets/css/bootstrap/font-awesome.css +6812 -3
- data/assets/css/errorpages/errorpages.css +8 -7
- data/assets/css/gh/ribbon.css +31 -18
- data/assets/css/hacker.css +41 -54
- data/assets/css/other/forms-min.css +316 -1
- data/assets/js/errorpages/homepage.js +4 -2
- data/assets/js/errorpages/isup.js +5 -2
- data/assets/js/errorpages/loaddomain.js +5 -2
- data/assets/js/fetch-url.js +1 -3
- data/assets/js/utils/bootstrap.bundle.min.js +4181 -6
- data/assets/js/utils/fetch.min.js +467 -1
- data/casjaysdev-jekyll-theme.gemspec +16 -6
- data/error/403.html +49 -0
- data/error/404.html +39 -34
- data/error/418.html +48 -0
- data/error/500.html +39 -34
- data/error/502.html +49 -0
- data/error/503.html +49 -0
- data/error/504.html +49 -0
- data/health/index.html +7 -0
- data/health/json +3 -0
- data/health/txt +1 -0
- metadata +259 -22
- data/.editorconfig +0 -8
- data/CNAME +0 -1
- data/Gemfile.lock +0 -310
- data/_includes/casjaysdev/ads.html +0 -24
- data/_includes/casjaysdev/google.html +0 -32
- data/_includes/image-gallery.html +0 -30
- data/_layouts/errors.html +0 -26
- data/images/.keep +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c2d64660536266b3b576759f0f7c975d75b11ccf5165b388e23c6a8280ab303f
|
|
4
|
+
data.tar.gz: 614ac6489c2484ecce14ae1cb30914bc36fe93dfbc9abfdd6f7a152e4d60f94c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 122526db3e0cf934f4f1a2b4de4bc97e0a944d49fac216a3fcf5abe6f6ecc0979b5b89c14b6adc091e016af04006e36dd08227f171ed2c8267c476004f2fd5ae
|
|
7
|
+
data.tar.gz: 496fb354d70226aed384d89671ded37c81b9173e1a2d53fa08ee023543e2b90998a93524b16be0e06f38b6da28fdd3146962e84a60c184735e5e1a2eff65eca8
|
data/.gitattributes
ADDED
|
File without changes
|
data/.gitignore
CHANGED
|
@@ -1,14 +1,108 @@
|
|
|
1
|
+
# gitignore created on 08/25/23 at 01:12
|
|
1
2
|
# Disable reminder in prompt
|
|
2
3
|
ignoredirmessage
|
|
3
4
|
|
|
4
|
-
#
|
|
5
|
-
|
|
5
|
+
# OS generated files
|
|
6
|
+
### Linux ###
|
|
7
|
+
*~
|
|
6
8
|
|
|
9
|
+
# temporary files which can be created if a process still has a handle open of a deleted file
|
|
10
|
+
.fuse_hidden*
|
|
11
|
+
|
|
12
|
+
# KDE directory preferences
|
|
13
|
+
.directory
|
|
14
|
+
|
|
15
|
+
# Linux trash folder which might appear on any partition or disk
|
|
16
|
+
.Trash-*
|
|
17
|
+
|
|
18
|
+
# .nfs files are created when an open file is removed but is still being accessed
|
|
19
|
+
.nfs*
|
|
20
|
+
|
|
21
|
+
### macOS ###
|
|
22
|
+
# General
|
|
23
|
+
.DS_Store?
|
|
24
|
+
.AppleDouble
|
|
25
|
+
.LSOverride
|
|
26
|
+
|
|
27
|
+
# Thumbnails
|
|
28
|
+
._*
|
|
29
|
+
|
|
30
|
+
# Files that might appear in the root of a volume
|
|
31
|
+
.DocumentRevisions-V100
|
|
32
|
+
.fseventsd
|
|
33
|
+
.Spotlight-V100
|
|
34
|
+
.TemporaryItems
|
|
35
|
+
.Trashes
|
|
36
|
+
.VolumeIcon.icns
|
|
37
|
+
.com.apple.timemachine.donotpresent
|
|
38
|
+
|
|
39
|
+
# Directories potentially created on remote AFP share
|
|
40
|
+
.AppleDB
|
|
41
|
+
.AppleDesktop
|
|
42
|
+
Network Trash Folder
|
|
43
|
+
Temporary Items
|
|
44
|
+
.apdisk
|
|
45
|
+
|
|
46
|
+
### macOS Patch ###
|
|
47
|
+
# iCloud generated files
|
|
48
|
+
*.icloud
|
|
49
|
+
|
|
50
|
+
### Windows ###
|
|
51
|
+
# Windows thumbnail cache files
|
|
52
|
+
Thumbs.db
|
|
53
|
+
Thumbs.db:encryptable
|
|
54
|
+
ehthumbs.db
|
|
55
|
+
ehthumbs_vista.db
|
|
56
|
+
|
|
57
|
+
# Dump file
|
|
58
|
+
*.stackdump
|
|
59
|
+
|
|
60
|
+
# Folder config file
|
|
61
|
+
[Dd]esktop.ini
|
|
62
|
+
|
|
63
|
+
# Recycle Bin used on file shares
|
|
64
|
+
$RECYCLE.BIN/
|
|
65
|
+
|
|
66
|
+
# Windows Installer files
|
|
67
|
+
*.cab
|
|
68
|
+
*.msi
|
|
69
|
+
*.msix
|
|
70
|
+
*.msm
|
|
71
|
+
*.msp
|
|
72
|
+
|
|
73
|
+
# misc
|
|
74
|
+
!*/README*
|
|
75
|
+
!inc/main.bash
|
|
76
|
+
|
|
77
|
+
# Windows shortcuts
|
|
78
|
+
*.lnk
|
|
79
|
+
|
|
80
|
+
# ignore commit message
|
|
81
|
+
**/.gitcommit
|
|
82
|
+
|
|
83
|
+
# ignore .build_failed files
|
|
84
|
+
**/.build_failed*
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
# ignore .bak files
|
|
88
|
+
**/*.bak
|
|
89
|
+
|
|
90
|
+
# ignore .no_push files
|
|
91
|
+
**/.no_push
|
|
92
|
+
|
|
93
|
+
# ignore .no_git files
|
|
94
|
+
**/.no_git
|
|
95
|
+
|
|
96
|
+
# ignore .installed files
|
|
97
|
+
**/.installed
|
|
7
98
|
### Jekyll ###
|
|
8
99
|
_site/
|
|
9
100
|
.sass-cache/
|
|
10
101
|
.jekyll-cache/
|
|
11
102
|
.jekyll-metadata
|
|
103
|
+
# Ignore folders generated by Bundler
|
|
104
|
+
.bundle/
|
|
105
|
+
vendor/
|
|
12
106
|
|
|
13
107
|
### Ruby ###
|
|
14
108
|
*.gem
|
|
@@ -22,13 +116,10 @@ _site/
|
|
|
22
116
|
/test/tmp/
|
|
23
117
|
/test/version_tmp/
|
|
24
118
|
/tmp/
|
|
25
|
-
|
|
26
119
|
# Used by dotenv library to load environment variables.
|
|
27
120
|
# .env
|
|
28
|
-
|
|
29
121
|
# Ignore Byebug command history file.
|
|
30
122
|
.byebug_history
|
|
31
|
-
|
|
32
123
|
## Specific to RubyMotion:
|
|
33
124
|
.dat*
|
|
34
125
|
.repl_history
|
|
@@ -36,41 +127,29 @@ build/
|
|
|
36
127
|
*.bridgesupport
|
|
37
128
|
build-iPhoneOS/
|
|
38
129
|
build-iPhoneSimulator/
|
|
39
|
-
|
|
40
130
|
## Specific to RubyMotion (use of CocoaPods):
|
|
41
131
|
#
|
|
42
132
|
# We recommend against adding the Pods directory to your .gitignore. However
|
|
43
133
|
# you should judge for yourself, the pros and cons are mentioned at:
|
|
44
134
|
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
45
135
|
# vendor/Pods/
|
|
46
|
-
|
|
47
136
|
## Documentation cache and generated files:
|
|
48
137
|
/.yardoc/
|
|
49
138
|
/_yardoc/
|
|
50
139
|
/doc/
|
|
51
140
|
/rdoc/
|
|
52
|
-
|
|
53
141
|
## Environment normalization:
|
|
54
142
|
/.bundle/
|
|
55
143
|
/vendor/bundle
|
|
56
144
|
/lib/bundler/man/
|
|
57
|
-
|
|
58
145
|
# for a library or gem, you might want to ignore these files since the code is
|
|
59
146
|
# intended to run in multiple environments; otherwise, check them in:
|
|
60
147
|
# Gemfile.lock
|
|
61
148
|
# .ruby-version
|
|
62
149
|
# .ruby-gemset
|
|
63
|
-
|
|
64
150
|
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
65
151
|
.rvmrc
|
|
66
|
-
|
|
67
152
|
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
|
68
153
|
# .rubocop-https?--*
|
|
69
154
|
|
|
70
|
-
### Ruby Patch ###
|
|
71
|
-
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
|
72
|
-
# .rubocop-https?--*
|
|
73
155
|
|
|
74
|
-
# End of https://www.toptal.com/developers/gitignore/api/jekyll,ruby
|
|
75
|
-
# ignore commit message
|
|
76
|
-
.gitcommit
|
data/.prettierrc.json
ADDED
data/Gemfile
CHANGED
|
@@ -1,15 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
gem '
|
|
6
|
-
gem '
|
|
7
|
-
gem '
|
|
8
|
-
gem 'jekyll-
|
|
9
|
-
gem 'jekyll-
|
|
10
|
-
gem 'jekyll-
|
|
11
|
-
gem '
|
|
12
|
-
gem 'jekyll-
|
|
13
|
-
gem '
|
|
14
|
-
gem 'jekyll-
|
|
15
|
-
gem '
|
|
1
|
+
source "https://rubygems.org"
|
|
2
|
+
gem 'jekyll', '>= 3.5', '< 5.0', group: :jekyll_plugins
|
|
3
|
+
gem 'github-pages', '~> 228', group: :jekyll_plugins
|
|
4
|
+
gem 'kramdown', group: :jekyll_plugins
|
|
5
|
+
gem 'webrick', '~> 1.8', '>= 1.8.1', group: :jekyll_plugins
|
|
6
|
+
gem 'jemoji', group: :jekyll_plugins
|
|
7
|
+
gem 'faraday-retry', '~> 2.1', group: :jekyll_plugins
|
|
8
|
+
gem 'jekyll-feed', group: :jekyll_plugins
|
|
9
|
+
gem 'jekyll-gist', group: :jekyll_plugins
|
|
10
|
+
gem 'jekyll-avatar', group: :jekyll_plugins
|
|
11
|
+
gem 'jekyll-seo-tag', group: :jekyll_plugins
|
|
12
|
+
gem 'jekyll-mentions', group: :jekyll_plugins
|
|
13
|
+
gem 'jekyll-coffeescript', group: :jekyll_plugins
|
|
14
|
+
gem 'jekyll-redirect-from', group: :jekyll_plugins
|
|
15
|
+
gem 'jekyll-menus', '~> 0.6.1', group: :jekyll_plugins
|
|
16
|
+
gem 'jekyll_pages_api', '~>0.1.6', group: :jekyll_plugins
|
|
17
|
+
gem 'jekyll-analytics', '~> 0.1.14', group: :jekyll_plugins
|
|
18
|
+
gem 'jekyll-watch', '~> 2.2', '>= 2.2.1', group: :jekyll_plugins
|
|
19
|
+
gem 'jekyll-assets', '~> 3.0', '>= 3.0.12', group: :jekyll_plugins
|
|
20
|
+
gem 'jekyll-admin', '~> 0.9.0', '>= 0.9.0', group: :jekyll_plugins
|
|
21
|
+
gem 'jekyll-remote-include', '~> 1.0', '>= 1.0.2', group: :jekyll_plugins
|
|
22
|
+
gem 'jekyll-theme-hacker', '~> 0.2.0', group: :jekyll_plugins
|
|
23
|
+
gem 'jekyll-tidy', group: :jekyll_plugins
|
|
24
|
+
gem 'casjaysdev-jekyll-theme', '>=0.1.7', group: :jekyll_plugins
|
|
25
|
+
gem "sprockets", "~> 3.7", group: :jekyll_plugins
|
data/LICENSE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
|
2
2
|
Version 2, December 2004
|
|
3
3
|
|
|
4
|
-
Copyright (C) 2021 Jason Hempstead <git-admin@casjaysdev.
|
|
4
|
+
Copyright (C) 2021 Jason Hempstead <git-admin@casjaysdev.pro>
|
|
5
5
|
|
|
6
6
|
Everyone is permitted to copy and distribute verbatim or modified
|
|
7
7
|
copies of this license document, and changing it is allowed as long
|