jekyll-theme-midnight-mountains 0.1.0 → 0.1.1

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: c9cebbfd6159575108eb4813833cc441087c31b11952d3f64f2220658fcc7bca
4
- data.tar.gz: 706de40262c65be1486dcffc2c56b901b34dfecc67d2ad11fa83129f4abd24a9
3
+ metadata.gz: 51d5abff3af7d712edd3e2cca7ead54d03980cebbd9f913a08aaee210830c493
4
+ data.tar.gz: 18172f87c25d1b7c0727bb5480fd65644b47a999fc902042fd7b13df58cea3dc
5
5
  SHA512:
6
- metadata.gz: c9e4d407c18b7754889be92345137d33158932508168a26e928463316b4f686b953a61d230fbed7ac3339c59fb5eeafe75d0a114c2c916790aa14153c279eb2f
7
- data.tar.gz: 573e10197966422f5f6191873745edb458f6eee699796dc4ace8b69903f54c776580cd8c3d7bfbeb3f47f2a0d3382673b5bed61ebe1c9195622aacd98e638276
6
+ metadata.gz: 7d0642ed4095663c95ed7deaf9a274beec67e5e702152f69761bfa023b1718a7c41aff695d5fbb99d634548bcaf6e6d1bedc3460c16a388e1c8dc1c7dd675a54
7
+ data.tar.gz: 7ecfc17c6d27f1951aae19bffeba55438eeb292519cb41868200645b4790c9332c8fe9333d1e9ccf0b4061ccca4e0b925c9b2d5b7d9c416a5489c5ec0870f27a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2026-05-29
4
+
5
+ - Remove stray editor backup/temp files committed under `_layouts/` (`home.html~` was being packaged into the published gem; `# *Minibuf-1*#` was repo cruft).
6
+ - Add automated RubyGems release workflow (`.github/workflows/release.yml`) using GitHub Actions + Trusted Publishing (OIDC).
7
+
3
8
  ## [0.1.0] - 2026-01-05
4
9
 
5
10
  - Initial release
data/CODE_OF_CONDUCT.md CHANGED
@@ -39,7 +39,7 @@ This Code of Conduct applies within all community spaces, and also applies when
39
39
 
40
40
  ## Enforcement
41
41
 
42
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at palak.mathur@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at insanethoughts[at]live.com. All complaints will be reviewed and investigated promptly and fairly.
43
43
 
44
44
  All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
45
 
data/README.md CHANGED
@@ -71,6 +71,10 @@ To run the demo site from the repo root:
71
71
  bundle exec jekyll serve --source example
72
72
  ```
73
73
 
74
+ ## Screenshot
75
+
76
+ ![image showing the screenshot of the demo](Demo.png "Demo Screenshot")
77
+
74
78
  ## Development
75
79
 
76
80
  After checking out the repo, run `bin/setup`, then `bundle exec jekyll serve`.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllThemeMidnightMountains
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-midnight-mountains
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Palak Mathur
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-05 00:00:00.000000000 Z
11
+ date: 2026-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -136,7 +136,6 @@ files:
136
136
  - README.md
137
137
  - _layouts/default.html
138
138
  - _layouts/home.html
139
- - _layouts/home.html~
140
139
  - _layouts/page.html
141
140
  - _layouts/post.html
142
141
  - assets/css/midnight-mountains.scss
@@ -168,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
167
  - !ruby/object:Gem::Version
169
168
  version: '0'
170
169
  requirements: []
171
- rubygems_version: 3.4.20
170
+ rubygems_version: 3.5.22
172
171
  signing_key:
173
172
  specification_version: 4
174
173
  summary: A moody, card-based Jekyll theme inspired by midnight mountain views.
data/_layouts/home.html~ DELETED
@@ -1,96 +0,0 @@
1
- ---
2
- layout: default
3
- ---
4
-
5
- <div class="home-container">
6
- <div class="wrapper">
7
-
8
- <!-- Featured Post -->
9
- {% if site.posts.size > 0 %}
10
- {% assign featured_post = site.posts.first %}
11
- <article class="featured-post">
12
- <div class="post-hero" style="background-image: linear-gradient(135deg, rgba(15, 20, 25, 0.2), rgba(15, 20, 25, 0.75)), url('{{ featured_post.image | default: '/assets/images/mountain-1.jpg' | relative_url }}')">
13
- <div class="hero-overlay"></div>
14
- </div>
15
- <div class="featured-content">
16
- <h2 class="post-title">
17
- <a href="{{ featured_post.url | relative_url }}">
18
- {{ featured_post.title | escape }}
19
- </a>
20
- </h2>
21
- <p class="post-excerpt">{{ featured_post.excerpt | strip_html | truncatewords: 30 }}</p>
22
- </div>
23
- </article>
24
- {% endif %}
25
-
26
- <!-- Sidebar and Grid -->
27
- <div class="content-grid">
28
-
29
- <!-- Post Grid -->
30
- <div class="posts-section">
31
- <div class="post-grid">
32
- {% for post in site.posts offset:1 limit:8 %}
33
- <article class="post-card">
34
- <div class="post-thumbnail" style="background-image: linear-gradient(135deg, rgba(15, 20, 25, 0.2), rgba(15, 20, 25, 0.75)), url('{{ post.image | default: '/assets/images/mountain-' | append: forloop.index | append: '.jpg' | relative_url }}')">
35
- <div class="thumbnail-overlay"></div>
36
- </div>
37
- <div class="post-info">
38
- <h3 class="post-card-title">
39
- <a href="{{ post.url | relative_url }}">
40
- {{ post.title | escape }}
41
- </a>
42
- </h3>
43
- <p class="post-card-excerpt">{{ post.excerpt | strip_html | truncatewords: 15 }}</p>
44
- </div>
45
- </article>
46
- {% endfor %}
47
- </div>
48
- </div>
49
-
50
- <!-- Sidebar -->
51
- <aside class="sidebar">
52
-
53
- <!-- Profile Widget -->
54
- <div class="widget profile-widget">
55
- <div class="profile-avatar"></div>
56
- <div class="profile-lines">
57
- <div class="line"></div>
58
- <div class="line"></div>
59
- <div class="line"></div>
60
- </div>
61
- </div>
62
-
63
- <!-- Tags Widget -->
64
- <div class="widget tags-widget">
65
- <div class="widget-title"></div>
66
- <div class="tag-cloud">
67
- <span class="tag">Tag 1</span>
68
- <span class="tag">Tag 2</span>
69
- <span class="tag">Tag 3</span>
70
- <span class="tag">Tag 4</span>
71
- <span class="tag">Tag 5</span>
72
- <span class="tag">Tag 6</span>
73
- <span class="tag">Tag 7</span>
74
- <span class="tag">Tag 8</span>
75
- <span class="tag">Tag 9</span>
76
- </div>
77
- </div>
78
-
79
- <!-- About Widget -->
80
- <div class="widget about-widget">
81
- <div class="widget-title"></div>
82
- <div class="about-lines">
83
- <div class="line"></div>
84
- <div class="line"></div>
85
- <div class="line"></div>
86
- <div class="line"></div>
87
- <div class="line short"></div>
88
- </div>
89
- </div>
90
-
91
- </aside>
92
-
93
- </div>
94
-
95
- </div>
96
- </div>