jekkyl-arumai 0.1.2 → 0.1.3

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +17 -1
  3. data/_layouts/posts.html +31 -15
  4. data/assets/theme.css +56 -1
  5. metadata +5 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5767d3d6a9093370f932f7f42a3869242d1b9a4e9b6a8a638e8e6fceec2ece9
4
- data.tar.gz: 99d67dbcae024746b3e641dbe653fd11a2167c8c5c39274d40ff7a839414f283
3
+ metadata.gz: 1ec7be4c80dfc10c306ea1d5dbb8c15e283003d06a602879d9ade669f4925554
4
+ data.tar.gz: 5eeb120ba4027b9baa0bc24286c1837b967553e9ef6ba864c7cc92c0a96091d2
5
5
  SHA512:
6
- metadata.gz: d7fa6b0942d3fb406208b0469bd3efc1e3745f99e3408a815066897ae3d7c0be95913502e625d0b363da010df2ea3f6fe5474c235627b67003933cc025d16a60
7
- data.tar.gz: f3813e3ed11e62131687ec61756414747a1198d72e9289f27b8be7e96f751f82bd37f6e20b25e77bbb7fb78b266df505b2891baa8804e4c9d1fdd1acc98782f6
6
+ metadata.gz: b0548e33a84acb4e91127c82dc1a07242e1e1eac1e17bd57bbd12c76d174c8f83c4afc353f44bb9a7214f7a30c678bb9f2fab4a4f9b150b7ccadc2ea40802925
7
+ data.tar.gz: a4b195eb5a8290a9c1c27c33a56a0c37f9891545d458b9dd9833ff502937ea822dd7d2a13493cec95cd98290e0de46f7dd7f351698bd7b93dea757809fe357d1
data/README.md CHANGED
@@ -40,6 +40,12 @@ prisma:
40
40
  theme_name: twilight
41
41
  ```
42
42
 
43
+ #### Screenshots
44
+
45
+ ![post detail default](screenshots/post_detail_default.png)
46
+
47
+ ![post detail twilight](screenshots/post_detail_twilight.png)
48
+
43
49
  This line will replace the default Prisma theme with the specified one. You can visit the Prisma website for available theme names. Currently supported themes include: twilight, dark, funky, okaidia, coy, solarizedlight, and tomorrow.
44
50
 
45
51
  #### Replacing the Default Home Page Image
@@ -47,6 +53,12 @@ This line will replace the default Prisma theme with the specified one. You can
47
53
  To replace the default home page image, add the following page variables to your index.md file. Here is a sample code:
48
54
 
49
55
 
56
+ ### Post list - Preview - screenshots
57
+
58
+ ![posts list](screenshots/posts_page.png)
59
+
60
+
61
+
50
62
  ```markdown
51
63
  ---
52
64
  layout: home
@@ -54,6 +66,10 @@ image_url: "https://images.pexels.com/photos/2659939/pexels-photo-2659939.jpeg?a
54
66
  ---
55
67
  ```
56
68
 
69
+ #### screenshots
70
+
71
+ ![home_page](screenshots/home_page.png)
72
+
57
73
  This markdown format will correctly set a new image for your home page.
58
74
 
59
75
  ## Usage
@@ -62,7 +78,7 @@ TODO: Write usage instructions here. Describe your available layouts, includes,
62
78
 
63
79
  ## Contributing
64
80
 
65
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/blog-lab. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
81
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/jekkyl-arumai. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
66
82
 
67
83
  ## Development
68
84
 
data/_layouts/posts.html CHANGED
@@ -1,18 +1,34 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
- <div class="row mt-2 posts-link">
5
- <div class="col-md-3"></div>
6
- <div class="col-md-6">
7
- <ul class="list-group list-group-flush list-group-numbered">
8
- {% for post in site.posts %}
9
- <li class="list-group-item">
10
- <a href="{{ post.url }}">{{post.title}}</a> - <i>{{post.date | date_to_string: "ordinal", "US"}}</i>
11
- </li>
12
- {% endfor %}
13
- </ul>
14
- </div>
15
- </div>
16
- <div class="col-md-3"></div>
17
- {{content}}
18
- </div>
4
+ <div class="row mt-5 posts-link">
5
+ <div class="col-md-8 offset-md-2">
6
+ <!-- Politics Section -->
7
+ <h2>Politics</h2>
8
+ <ul class="list-group list-group-flush mb-5">
9
+ {% assign politics_posts = site.posts | where_exp: "post", "post.categories contains 'politics'" %}
10
+ {% for post in politics_posts %}
11
+ <li class="list-group-item d-flex justify-content-between align-items-center">
12
+ <a href="{{ post.url }}" class="text-decoration-none text-reset">{{ post.title }}</a>
13
+ <span class="text-muted small">{{ post.date | date: "%b %d, %Y" }}</span>
14
+ </li>
15
+ {% else %}
16
+ <li class="list-group-item text-muted">No politics posts yet.</li>
17
+ {% endfor %}
18
+ </ul>
19
+
20
+ <!-- Tech Section -->
21
+ <h2>Tech</h2>
22
+ <ul class="list-group list-group-flush">
23
+ {% for post in site.posts %}
24
+ {% unless post.categories contains 'politics' %}
25
+ <li class="list-group-item d-flex justify-content-between align-items-center">
26
+ <a href="{{ post.url }}" class="text-decoration-none text-reset">{{ post.title }}</a>
27
+ <span class="text-muted small">{{ post.date | date: "%b %d, %Y" }}</span>
28
+ </li>
29
+ {% endunless %}
30
+ {% endfor %}
31
+ </ul>
32
+ </div>
33
+ </div>
34
+ {{content}}
data/assets/theme.css CHANGED
@@ -33,4 +33,59 @@
33
33
 
34
34
  .posts-link li i {
35
35
  font-size: 13px;
36
- }
36
+ }
37
+ /* --- Modern Design Enhancements --- */
38
+
39
+ /* Tables with Borders */
40
+ table {
41
+ border-collapse: collapse;
42
+ width: 100%;
43
+ margin: 20px 0;
44
+ }
45
+ th, td {
46
+ border: 1px solid #ddd;
47
+ padding: 12px 15px;
48
+ text-align: left;
49
+ }
50
+ th {
51
+ background-color: #f8f9fa;
52
+ font-weight: 600;
53
+ }
54
+
55
+ /* Modern Blockquotes */
56
+ blockquote {
57
+ border-left: 5px solid #31ccb0;
58
+ background-color: #f8f9fa;
59
+ padding: 15px 20px;
60
+ margin: 20px 0;
61
+ font-style: italic;
62
+ color: #555;
63
+ border-radius: 0 5px 5px 0;
64
+ }
65
+ blockquote p {
66
+ margin-bottom: 0;
67
+ }
68
+
69
+ /* Section Headers & List Hover Effects */
70
+ .posts-link h2 {
71
+ border-left: 5px solid #31ccb0;
72
+ padding-left: 15px;
73
+ color: #3d4860;
74
+ margin-top: 2rem;
75
+ margin-bottom: 1.5rem;
76
+ }
77
+ .list-group-item {
78
+ transition: background-color 0.2s ease;
79
+ }
80
+ .list-group-item:hover {
81
+ background-color: #f8f9fa;
82
+ }
83
+
84
+ .text-decoration-none {
85
+ color: #3d4860;
86
+ font-weight: 500;
87
+ }
88
+
89
+ .text-decoration-none:hover {
90
+ color: #31ccb0;
91
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekkyl-arumai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sathia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-12 00:00:00.000000000 Z
11
+ date: 2026-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -45,7 +45,8 @@ files:
45
45
  homepage: https://gitlab.com/sathias/jekkyl-arumai
46
46
  licenses:
47
47
  - MIT
48
- metadata: {}
48
+ metadata:
49
+ source_code_uri: https://gitlab.com/sathias/jekkyl-arumai
49
50
  post_install_message:
50
51
  rdoc_options: []
51
52
  require_paths:
@@ -61,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
62
  - !ruby/object:Gem::Version
62
63
  version: '0'
63
64
  requirements: []
64
- rubygems_version: 3.3.26
65
+ rubygems_version: 3.4.20
65
66
  signing_key:
66
67
  specification_version: 4
67
68
  summary: The theme, named "Arumai" (meaning "wonderful" or "excellent" in Tamil),