dev-portfolio-blog 0.1.8 → 0.1.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61653c13a03ae8dd7983c033566569937be60aa9c58d48b6056fbfe7b9161659
4
- data.tar.gz: 19181f50392e703eff6f0791b8ecbb64ace9cc83032c47d607ecc4a1097d3fbb
3
+ metadata.gz: a379058df4b6259715bb54359f0f7c7dc5d04858fd45ce8de3018907f1a9eeea
4
+ data.tar.gz: 7207bbb7dceff9cf9f55f4a2b3ccaea90a5e85c92c9baeb4d872c5ad4fcc8ce2
5
5
  SHA512:
6
- metadata.gz: 97b3166cb17c46ac1e656279f6a348ed63b59096bcfc817db174d07ed8d0b40f640b78cf0ae958f187165eaa2b9ca4aa4fd8c1a8d34174c099c9e5cd354ad679
7
- data.tar.gz: 7230d2e8c1ce6dac62283ef66cb4908db6df50d052a644575d862ab9127f9bf94934bdb7646bf6834986cb03f08d78286c9c25941a18f9b4161173711d710221
6
+ metadata.gz: b5c0d1168f29b5f0036f9f779ad61a7ba50afbba96bd04f419b0fdad41c74f041ec16e47cf5e59554ac8e3beb6d3446b3d4e331e4e1495be11dbf6e7bb176e81
7
+ data.tar.gz: a7b3f7fc8ff46cbfcc3049ec75d7cdd0c4cd9d6f2e3e84702e68bf20ab2237c2ebe8795cb9c6f6d4d58f3da48a72fc85087a2973c9a76bfe4552f3917c7b8afc
data/README.md CHANGED
@@ -26,7 +26,7 @@ This is a minimal jekyll theme for writing blogs and about yourself.
26
26
 
27
27
  ## features
28
28
  1. Google Analytics
29
- 2. Dark mode
29
+ 2. Many themes such as: Default, Solarized, and Sepia. All in light and dark modes.
30
30
  3. Disqus comments
31
31
  4. Categorization
32
32
  5. Emojis Support
@@ -162,6 +162,10 @@ categories: [category1, category2]
162
162
  Post Text.
163
163
  ```
164
164
 
165
+ ## Troubleshooting
166
+ - ` Could not find a JavaScript runtime. See https://github.com/rails/execjs for a list of available runtimes`
167
+ Node JS is missing from your system. In ubuntu install using `sudo apt-get install nodejs` or refer to [this](https://stackoverflow.com/questions/9202324/execjs-could-not-find-a-javascript-runtime-but-execjs-and-therubyracer-are-in)
168
+
165
169
 
166
170
  ## Contributing
167
171
 
data/_layouts/post.html CHANGED
@@ -14,7 +14,7 @@ layout: description
14
14
  {% assign categories = page.categories %}
15
15
  {% endif %}
16
16
  {% for category in categories %}
17
- <a href="{{site.url}}/categories/#{{category|slugize}}">{{category}}</a>
17
+ <a href="{{site.baseurl}}/categories/#{{category|slugize}}">{{category}}</a>
18
18
  {% unless forloop.last %}&nbsp;{% endunless %}
19
19
  {% endfor %}
20
20
  </div>
@@ -24,4 +24,4 @@ layout: description
24
24
  {% if site.disqus.shortname and page.comments %}
25
25
  <hr>
26
26
  {% include disqus_comments.html %}
27
- {% endif %}
27
+ {% endif %}
data/_sass/main.scss CHANGED
@@ -261,11 +261,12 @@ body {
261
261
  }
262
262
 
263
263
 
264
- //custom md tags styles
265
- div.highlight {
266
- background: var(--primary-highlight-color);
267
- padding: 5px;
268
- border-radius: 5px;
269
- margin: 10px 0px;
270
- overflow: auto;
264
+ //custom md tags styles
265
+ div.highlight {
266
+ background: var(--primary-highlight-color);
267
+ padding: 5px;
268
+ border-radius: 5px;
269
+ margin: 10px 0px;
270
+ overflow: auto;
271
+ }
271
272
  }
data/assets/js/theme.js CHANGED
@@ -1,12 +1,32 @@
1
1
  const themeMap = {
2
- 'default': {
2
+ 'default-light': {
3
3
  'background-color': 'white',
4
4
  'text-color': '#222',
5
5
  'highlight-color': '#eee'
6
6
  },
7
- 'dark': {
7
+ 'default-dark': {
8
8
  'background-color': '#222',
9
9
  'text-color': 'white',
10
10
  'highlight-color': '#2e2e2e'
11
+ },
12
+ 'solarized-light': {
13
+ 'background-color': '#fdf6e3',
14
+ 'text-color': '#657b83',
15
+ 'highlight-color': '#eee8d5'
16
+ },
17
+ 'solarized-dark': {
18
+ 'background-color': '#002b36',
19
+ 'text-color': '#839496',
20
+ 'highlight-color': '#073642'
21
+ },
22
+ 'sepia-light': {
23
+ 'background-color': '#f4ecd8',
24
+ 'text-color': '#5b4636',
25
+ 'highlight-color': '#e4d5b7'
26
+ },
27
+ 'sepia-dark': {
28
+ 'background-color': '#3e2c1c',
29
+ 'text-color': '#d8c3a5',
30
+ 'highlight-color': '#4b382a'
11
31
  }
12
32
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev-portfolio-blog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rohit Jain
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-09 00:00:00.000000000 Z
11
+ date: 2025-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 3.8.7
19
+ version: '4.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 3.8.7
26
+ version: '4.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: jekyll-seo-tag
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -80,62 +80,6 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- - !ruby/object:Gem::Dependency
84
- name: jekyll-minifier
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: '0'
90
- type: :runtime
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - ">="
95
- - !ruby/object:Gem::Version
96
- version: '0'
97
- - !ruby/object:Gem::Dependency
98
- name: jekyll-assets
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - ">="
102
- - !ruby/object:Gem::Version
103
- version: '0'
104
- type: :runtime
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - ">="
109
- - !ruby/object:Gem::Version
110
- version: '0'
111
- - !ruby/object:Gem::Dependency
112
- name: sprockets
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - "~>"
116
- - !ruby/object:Gem::Version
117
- version: '3.7'
118
- type: :runtime
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - "~>"
123
- - !ruby/object:Gem::Version
124
- version: '3.7'
125
- - !ruby/object:Gem::Dependency
126
- name: autoprefixer-rails
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - ">="
130
- - !ruby/object:Gem::Version
131
- version: '0'
132
- type: :runtime
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - ">="
137
- - !ruby/object:Gem::Version
138
- version: '0'
139
83
  - !ruby/object:Gem::Dependency
140
84
  name: jemoji
141
85
  requirement: !ruby/object:Gem::Requirement
@@ -178,7 +122,7 @@ dependencies:
178
122
  - - ">="
179
123
  - !ruby/object:Gem::Version
180
124
  version: '0'
181
- description:
125
+ description:
182
126
  email:
183
127
  - rohitjain18005@gmail.com
184
128
  executables: []
@@ -209,7 +153,7 @@ homepage: https://github.com/rohitjain00/dev-portfolio-blog
209
153
  licenses:
210
154
  - MIT
211
155
  metadata: {}
212
- post_install_message:
156
+ post_install_message:
213
157
  rdoc_options: []
214
158
  require_paths:
215
159
  - lib
@@ -224,8 +168,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
224
168
  - !ruby/object:Gem::Version
225
169
  version: '0'
226
170
  requirements: []
227
- rubygems_version: 3.1.2
228
- signing_key:
171
+ rubygems_version: 3.4.20
172
+ signing_key:
229
173
  specification_version: 4
230
174
  summary: This is a simple efficient blog and portfolio
231
175
  test_files: []