jekyll-theme-nyx 0.2.3 → 0.3.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.github/CONTRIBUTING.MD +107 -0
- data/.github/ISSUE_TEMPLATE/bug_report.yml +47 -0
- data/.github/ISSUE_TEMPLATE/config.yml +1 -0
- data/.github/ISSUE_TEMPLATE/feature_request.yml +28 -0
- data/.github/pull_request_template.md +31 -0
- data/CHANGELOG.md +42 -5
- data/Gemfile +2 -2
- data/Gemfile.lock +1 -1
- data/Rakefile +16 -16
- data/SECURITY.md +16 -0
- data/_config.yml +7 -4
- data/_includes/header.html +11 -0
- data/_layouts/category.html +19 -0
- data/_layouts/default.html +19 -2
- data/_layouts/post.md +1 -14
- data/_layouts/tag.html +19 -0
- data/_plugins/taxonomy_pages.rb +47 -0
- data/_sass/nyx/_base.scss +17 -1
- data/_sass/nyx/_layout.scss +113 -8
- data/_sass/nyx/_variables.scss +5 -0
- data/_tabs/about.md +9 -0
- data/_tabs/categories.md +19 -0
- data/_tabs/posts.md +24 -0
- data/_tabs/tags.md +19 -0
- data/index.md +105 -3
- data/jekyll-theme-nyx.gemspec +24 -26
- data.tar.gz.sig +0 -0
- metadata +16 -3
- metadata.gz.sig +0 -0
- data/_includes/sidebar.html +0 -9
- /data/.github/workflows/{main.yml → build-and-deploy.yml} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4255ca5efed8bc6aa4c303c219117c7cd062ef2c8dc409068bdb67cb02eb7a31
|
|
4
|
+
data.tar.gz: 8db90df707ef2c6bfc92fb42eb477f869be8528534a43a602af04d6779933b9e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 042614cbceeeb38aeb930e4e58761fb93589b51ebfa8f573697d3fe268e255680e8c5d84ac8392ec4b2468acff3d5df2b71112cc66b1e3380c52fbede7362e33
|
|
7
|
+
data.tar.gz: fb55859fee5bbe19c7fbd7f085b2e8c9e7f9782bc3eb4645206fcba179837f74af3d0e0ad743877f0e5fb89df40c78497fcd184839e23ef56cbfc55edfb203f1
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# Contributing to Nyx
|
|
2
|
+
|
|
3
|
+
First of all, thanks for contributing!
|
|
4
|
+
|
|
5
|
+
## How to Contribute (High Level)
|
|
6
|
+
|
|
7
|
+
1. **Identify a problem or improvement**
|
|
8
|
+
2. **Open or claim an issue**
|
|
9
|
+
3. **Fork the repo**
|
|
10
|
+
4. **Create a branch**
|
|
11
|
+
5. **Make your changes**
|
|
12
|
+
6. **Open a pull request**
|
|
13
|
+
|
|
14
|
+
If you do not open or claim an issue, your pull request will likely be rejected.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Issues Come First
|
|
19
|
+
|
|
20
|
+
Before you open a PR, **there should be an issue**.
|
|
21
|
+
|
|
22
|
+
This applies if you are:
|
|
23
|
+
- Fixing a bug
|
|
24
|
+
- Adding a feature
|
|
25
|
+
- Refactoring existing behavior
|
|
26
|
+
- Changing styling, layout, or structure in a non-trivial way
|
|
27
|
+
|
|
28
|
+
### Why?
|
|
29
|
+
- It prevents duplicate work
|
|
30
|
+
- It lets us agree on direction before code is written
|
|
31
|
+
- It gives context to your PR
|
|
32
|
+
- It creates a paper trail for future contributors
|
|
33
|
+
|
|
34
|
+
### What to do:
|
|
35
|
+
- If an issue already exists comment on it and say you’re working on it
|
|
36
|
+
- If no issue exists open one
|
|
37
|
+
- If you’re unsure open an issue anyway and ask
|
|
38
|
+
|
|
39
|
+
> Small things like typo fixes can skip the issue step. Use your judgment.
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Fork & Branch
|
|
44
|
+
|
|
45
|
+
1. Fork the repository
|
|
46
|
+
2. Clone your fork locally
|
|
47
|
+
3. Create a branch from `main`
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
git checkout -b fix/my-short-description
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Please use clear branch names.
|
|
54
|
+
|
|
55
|
+
## Making Changes
|
|
56
|
+
|
|
57
|
+
A few expectations:
|
|
58
|
+
|
|
59
|
+
- Follow the existing code style
|
|
60
|
+
- Don’t reformat unrelated files
|
|
61
|
+
- Keep commits focused and meaningful
|
|
62
|
+
- If you change behavior, explain why in the commit or PR
|
|
63
|
+
|
|
64
|
+
If your change affects:
|
|
65
|
+
- layout
|
|
66
|
+
- tags/categories
|
|
67
|
+
- syntax highlighting
|
|
68
|
+
- build behavior
|
|
69
|
+
|
|
70
|
+
…please call that out clearly in your PR description.
|
|
71
|
+
## Testing
|
|
72
|
+
|
|
73
|
+
Before opening a PR:
|
|
74
|
+
|
|
75
|
+
- Run the site locally with `bundle exec jekyll serve`
|
|
76
|
+
- Click around
|
|
77
|
+
- Check mobile widths
|
|
78
|
+
- Verify tags, categories, and posts still render correctly
|
|
79
|
+
|
|
80
|
+
## Opening a Pull Request
|
|
81
|
+
|
|
82
|
+
When opening your PR:
|
|
83
|
+
|
|
84
|
+
- Reference the issue it fixes (e.g. Fixes #12)
|
|
85
|
+
- Explain what you changed
|
|
86
|
+
- Explain why you changed it
|
|
87
|
+
- Include screenshots if it’s visual
|
|
88
|
+
- Keep it scoped — one PR, one purpose
|
|
89
|
+
|
|
90
|
+
Please fill out the PR template when opening a pull request. That helps us with understanding what your PR is trying to do. PRs without context or without an associated issue may be closed or sent back for clarification.
|
|
91
|
+
|
|
92
|
+
# Philosophy
|
|
93
|
+
|
|
94
|
+
Nyx aims to be:
|
|
95
|
+
|
|
96
|
+
- Minimal
|
|
97
|
+
- Understandable
|
|
98
|
+
- Hackable without too many plugins
|
|
99
|
+
- Predictable in structure
|
|
100
|
+
|
|
101
|
+
If your contribution makes things more magical but harder to reason about, it probably doesn’t fit. If you’re unsure, open an issue and ask.
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
Thanks again for contributing 💜
|
|
106
|
+
|
|
107
|
+
---
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: Bug Report
|
|
2
|
+
description: Create a report to help us improve
|
|
3
|
+
labels:
|
|
4
|
+
- bug
|
|
5
|
+
body:
|
|
6
|
+
- type: textarea
|
|
7
|
+
attributes:
|
|
8
|
+
label: Describe the bug
|
|
9
|
+
description: A clear and concise description of what the bug is.
|
|
10
|
+
validations:
|
|
11
|
+
required: true
|
|
12
|
+
|
|
13
|
+
- type: textarea
|
|
14
|
+
attributes:
|
|
15
|
+
label: Steps To Reproduce
|
|
16
|
+
description: Steps to reproduce the behavior.
|
|
17
|
+
placeholder: |
|
|
18
|
+
1. In this environment...
|
|
19
|
+
2. With this config...
|
|
20
|
+
3. Run '...'
|
|
21
|
+
4. See error...
|
|
22
|
+
validations:
|
|
23
|
+
required: true
|
|
24
|
+
|
|
25
|
+
- type: textarea
|
|
26
|
+
attributes:
|
|
27
|
+
label: Expected Behavior
|
|
28
|
+
description: A concise description of what you expected to happen.
|
|
29
|
+
validations:
|
|
30
|
+
required: true
|
|
31
|
+
|
|
32
|
+
- type: textarea
|
|
33
|
+
attributes:
|
|
34
|
+
label: Environment
|
|
35
|
+
value: |
|
|
36
|
+
- Ruby: <!-- run `ruby -v` -->
|
|
37
|
+
- Jekyll: <!-- run `bundle exec jekyll -v` -->
|
|
38
|
+
- Nyx: <!-- run `bundle info jekyll-theme-nyx` -->
|
|
39
|
+
validations:
|
|
40
|
+
required: true
|
|
41
|
+
|
|
42
|
+
- type: textarea
|
|
43
|
+
attributes:
|
|
44
|
+
label: Anything else?
|
|
45
|
+
description: |
|
|
46
|
+
Add any extra context here.
|
|
47
|
+
Logs, screenshots, or weird edge cases welcome.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: Feature Request
|
|
2
|
+
description: Suggest an idea for this project
|
|
3
|
+
labels:
|
|
4
|
+
- enhancement
|
|
5
|
+
body:
|
|
6
|
+
- type: textarea
|
|
7
|
+
attributes:
|
|
8
|
+
label: Is your feature request related to a problem? Please describe
|
|
9
|
+
description: A clear and concise description of what the problem is.
|
|
10
|
+
validations:
|
|
11
|
+
required: true
|
|
12
|
+
|
|
13
|
+
- type: textarea
|
|
14
|
+
attributes:
|
|
15
|
+
label: Describe the solution you'd like
|
|
16
|
+
description: A clear and concise description of what you want to happen.
|
|
17
|
+
validations:
|
|
18
|
+
required: true
|
|
19
|
+
|
|
20
|
+
- type: textarea
|
|
21
|
+
attributes:
|
|
22
|
+
label: Describe alternatives you've considered
|
|
23
|
+
description: A clear and concise description of any alternative solutions or features you've considered.
|
|
24
|
+
|
|
25
|
+
- type: textarea
|
|
26
|
+
attributes:
|
|
27
|
+
label: Additional context
|
|
28
|
+
description: Add any other context or screenshots about the feature request here.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
## jekyll-theme-nyx Pull Request
|
|
2
|
+
|
|
3
|
+
Thanks for contributing. Fill this out so future-you doesn't hate past-you.
|
|
4
|
+
|
|
5
|
+
## What does this PR do?
|
|
6
|
+
<!-- Short, clear explanation of the change. -->
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## Link to the relevant issue
|
|
10
|
+
<!-- All changes must be discussed in an issue first. Failure to do so may result in your Pull Request being rejected -->
|
|
11
|
+
fixes #<!--issue ID here-->
|
|
12
|
+
|
|
13
|
+
## List the main changes.
|
|
14
|
+
<!-- For example: "Added new tab layout", "Fixed Rouge highlighting", "Cleaned up SCSS variables" -->
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## Type of Change
|
|
18
|
+
- [ ] Bug fix
|
|
19
|
+
- [ ] New feature
|
|
20
|
+
- [ ] Breaking change
|
|
21
|
+
- [ ] Refactor / Cleanup
|
|
22
|
+
- [ ] Docs only
|
|
23
|
+
|
|
24
|
+
## Checklist
|
|
25
|
+
|
|
26
|
+
- [ ] Code builds without errors (`rake site`)
|
|
27
|
+
- [ ] Tested locally with Jekyll
|
|
28
|
+
- [ ] No unnecessary files committed
|
|
29
|
+
|
|
30
|
+
## Additional Notes
|
|
31
|
+
<!-- Anything reviewers should know? Edge cases, follow-ups, known issues. -->
|
data/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
# CHANGELOG
|
|
2
|
+
|
|
3
|
+
### [0.1.0] - 2026-01-01
|
|
2
4
|
|
|
3
5
|
- Initial release
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
#### [0.1.1] - 2026-01-02
|
|
6
8
|
|
|
7
9
|
- Added Rakefile for consistent functionality with pushing finished work
|
|
8
10
|
|
|
9
11
|
- Added GitHub Action to deploy site to GitHub Pages
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
### [0.2.0] - 2026-01-03
|
|
12
14
|
|
|
13
15
|
- Added Layouts:
|
|
14
16
|
- Default
|
|
@@ -18,6 +20,41 @@
|
|
|
18
20
|
- Layouts
|
|
19
21
|
- Syntax Highlighting
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
#### [0.2.1] - 2026-01-04
|
|
24
|
+
|
|
25
|
+
- Fixed Syntax Highlighting
|
|
26
|
+
|
|
27
|
+
#### [0.2.2] - 2026-01-05
|
|
28
|
+
|
|
29
|
+
- Updated the following to be more aligned with the goals of this project:
|
|
30
|
+
- README
|
|
31
|
+
- Gemfile
|
|
32
|
+
- Gemfile.lock
|
|
33
|
+
- Gemspec
|
|
34
|
+
- Rakefile
|
|
35
|
+
- _config.yml
|
|
36
|
+
|
|
37
|
+
- Added cert signing for verification and security
|
|
38
|
+
|
|
39
|
+
#### [0.2.3] - 2026-01-05
|
|
40
|
+
|
|
41
|
+
- Update header style
|
|
42
|
+
- Fixed bug causing line breaks to appear as dots
|
|
43
|
+
- Added lorem ipsum to the demo post
|
|
44
|
+
|
|
45
|
+
### [0.3.0] - 2026-01-06
|
|
46
|
+
|
|
47
|
+
- Added issue templates
|
|
48
|
+
- Added the following pages:
|
|
49
|
+
- /posts/
|
|
50
|
+
- /tags/
|
|
51
|
+
- /categories/
|
|
52
|
+
- /about/
|
|
22
53
|
|
|
23
|
-
|
|
54
|
+
#### [0.3.1] - 2026-01-06
|
|
55
|
+
- Added Pull Request Templates
|
|
56
|
+
- Moved the Issue templates to `yml`
|
|
57
|
+
- Create plugin to generate subpages for tags and categories
|
|
58
|
+
- added styling for tag and category tabs
|
|
59
|
+
- Added Contribution guide
|
|
60
|
+
- Added Security policy
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require
|
|
4
|
-
require
|
|
3
|
+
require 'rake'
|
|
4
|
+
require 'fileutils'
|
|
5
5
|
|
|
6
|
-
GEMSPEC =
|
|
6
|
+
GEMSPEC = 'jekyll-theme-nyx.gemspec'
|
|
7
7
|
|
|
8
8
|
# Helper to get current version from gemspec
|
|
9
9
|
def current_version
|
|
10
10
|
File.read(GEMSPEC)[/spec\.version\s*=\s*["'](.*?)["']/, 1]
|
|
11
11
|
end
|
|
12
12
|
|
|
13
|
-
GEM_NAME = GEMSPEC.sub(/\.gemspec$/,
|
|
14
|
-
GEM_FILE = "#{GEM_NAME}-#{current_version}.gem"
|
|
13
|
+
GEM_NAME = GEMSPEC.sub(/\.gemspec$/, '')
|
|
14
|
+
GEM_FILE = "#{GEM_NAME}-#{current_version}.gem".freeze
|
|
15
15
|
|
|
16
|
-
desc
|
|
16
|
+
desc 'Build dummy site to verify theme'
|
|
17
17
|
task :site do
|
|
18
|
-
sh
|
|
19
|
-
sh
|
|
20
|
-
puts
|
|
18
|
+
sh 'bundle install'
|
|
19
|
+
sh 'bundle exec jekyll build'
|
|
20
|
+
puts '[+] Dummy site builds successfully'
|
|
21
21
|
end
|
|
22
22
|
|
|
23
|
-
desc
|
|
23
|
+
desc 'Build the gem'
|
|
24
24
|
task :build do
|
|
25
25
|
sh "gem build #{GEMSPEC}"
|
|
26
26
|
puts "[+] Built #{GEM_FILE}"
|
|
27
27
|
end
|
|
28
28
|
|
|
29
|
-
desc
|
|
29
|
+
desc 'Push gem to RubyGems'
|
|
30
30
|
task :push do
|
|
31
31
|
sh "gem push #{GEM_FILE}"
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
desc
|
|
34
|
+
desc 'Create and push git tag'
|
|
35
35
|
task :tag do
|
|
36
36
|
sh "git tag v#{current_version}"
|
|
37
37
|
sh "git push origin v#{current_version}"
|
|
38
38
|
end
|
|
39
39
|
|
|
40
|
-
desc
|
|
40
|
+
desc 'Full release: site build, gem build, push, tag'
|
|
41
41
|
task release: [:site] do
|
|
42
|
-
sh
|
|
43
|
-
sh
|
|
44
|
-
sh
|
|
42
|
+
sh 'rake build'
|
|
43
|
+
sh 'rake push'
|
|
44
|
+
sh 'rake tag'
|
|
45
45
|
puts "[+] Released #{GEM_NAME} v#{current_version}"
|
|
46
46
|
end
|
data/SECURITY.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
<!--| Version | Supported |
|
|
6
|
+
| ------- | ------------------ |
|
|
7
|
+
| 5.1.x | :white_check_mark: |
|
|
8
|
+
| 5.0.x | :x: |
|
|
9
|
+
| 4.0.x | :white_check_mark: |
|
|
10
|
+
| < 4.0 | :x: |-->
|
|
11
|
+
|
|
12
|
+
The most recent major release is supported.
|
|
13
|
+
|
|
14
|
+
## Reporting a Vulnerability
|
|
15
|
+
|
|
16
|
+
If you find a vulnerability, please email me at me@slavetomints.com. You can expect to receive a response within a week. If your vulnerability is accepted you will be credited on the demo site after it has been patched.
|
data/_config.yml
CHANGED
|
@@ -2,8 +2,6 @@ title: Nyx Demo
|
|
|
2
2
|
theme: jekyll-theme-nyx
|
|
3
3
|
|
|
4
4
|
markdown: kramdown
|
|
5
|
-
|
|
6
|
-
|
|
7
5
|
kramdown:
|
|
8
6
|
syntax_highlighter: rouge
|
|
9
7
|
syntax_highlighter_opts:
|
|
@@ -11,7 +9,6 @@ kramdown:
|
|
|
11
9
|
block:
|
|
12
10
|
line_numbers: true
|
|
13
11
|
|
|
14
|
-
|
|
15
12
|
exclude:
|
|
16
13
|
- "*.gem"
|
|
17
14
|
- "*.gemspec"
|
|
@@ -20,4 +17,10 @@ exclude:
|
|
|
20
17
|
- Rakefile
|
|
21
18
|
- CHANGELOG.md
|
|
22
19
|
- CODE_OF_CONDUCT.md
|
|
23
|
-
- "certs/slavetomints.pem"
|
|
20
|
+
- "certs/slavetomints.pem"
|
|
21
|
+
|
|
22
|
+
collections:
|
|
23
|
+
tabs:
|
|
24
|
+
output: true
|
|
25
|
+
permalink: /:name/
|
|
26
|
+
sort_by: order
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<header>
|
|
2
|
+
{% assign tabs = site.tabs | sort: "nav_order" %}
|
|
3
|
+
<ul>
|
|
4
|
+
<li><a href="/">Home</a></li>
|
|
5
|
+
{% for tab in tabs %}
|
|
6
|
+
<li><a href="{{ tab.url | relative_url }}" class="{% if page.url == tab.url %}active{% endif %}">
|
|
7
|
+
{{ tab.title }}
|
|
8
|
+
</a></li>
|
|
9
|
+
{% endfor %}
|
|
10
|
+
</ul>
|
|
11
|
+
</header>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<h1>Category: {{ page.category }}</h1>
|
|
6
|
+
|
|
7
|
+
<ul class="post-list">
|
|
8
|
+
{% for post in page.posts %}
|
|
9
|
+
<li class="post-item">
|
|
10
|
+
<h2>
|
|
11
|
+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
|
12
|
+
</h2>
|
|
13
|
+
<time>{{ post.date | date: "%B %d, %Y" }}</time>
|
|
14
|
+
{% if post.description %}
|
|
15
|
+
<p>{{ post.description | strip_html }}</p>
|
|
16
|
+
{% endif %}
|
|
17
|
+
</li>
|
|
18
|
+
{% endfor %}
|
|
19
|
+
</ul>
|
data/_layouts/default.html
CHANGED
|
@@ -1,13 +1,30 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
|
+
|
|
3
4
|
<head>
|
|
4
5
|
<meta charset="UTF-8">
|
|
5
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
7
|
<link rel="stylesheet" href="{{ "/assets/css/nyx.css" | relative_url }}">
|
|
7
8
|
<title>{{ site.title }}</title>
|
|
8
9
|
</head>
|
|
10
|
+
|
|
9
11
|
<body>
|
|
10
|
-
{% include
|
|
11
|
-
|
|
12
|
+
{% include header.html %}
|
|
13
|
+
<main>
|
|
14
|
+
{{ content }}
|
|
15
|
+
</main>
|
|
12
16
|
</body>
|
|
17
|
+
|
|
18
|
+
<script>
|
|
19
|
+
document.addEventListener("DOMContentLoaded", () => {
|
|
20
|
+
document.querySelectorAll('div.highlighter-rouge').forEach(wrapper => {
|
|
21
|
+
const parent = wrapper.parentNode;
|
|
22
|
+
const inner = wrapper.querySelector('.highlight');
|
|
23
|
+
if (inner && parent) {
|
|
24
|
+
parent.replaceChild(inner, wrapper);
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
</script>
|
|
29
|
+
|
|
13
30
|
</html>
|
data/_layouts/post.md
CHANGED
|
@@ -5,18 +5,5 @@ layout: default
|
|
|
5
5
|
<h1>{{ page.title }}</h1>
|
|
6
6
|
<p>{{ page.date | date: "%B %d, %Y" }} – Written by {{ page.author }}</p>
|
|
7
7
|
</header>
|
|
8
|
-
|
|
9
|
-
{{ content }}
|
|
10
|
-
</main>
|
|
8
|
+
{{ content }}
|
|
11
9
|
|
|
12
|
-
<script>
|
|
13
|
-
document.addEventListener("DOMContentLoaded", () => {
|
|
14
|
-
document.querySelectorAll('div.highlighter-rouge').forEach(wrapper => {
|
|
15
|
-
const parent = wrapper.parentNode;
|
|
16
|
-
const inner = wrapper.querySelector('.highlight');
|
|
17
|
-
if (inner && parent) {
|
|
18
|
-
parent.replaceChild(inner, wrapper);
|
|
19
|
-
}
|
|
20
|
-
});
|
|
21
|
-
});
|
|
22
|
-
</script>
|
data/_layouts/tag.html
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<h1>Tag: {{ page.tag }}</h1>
|
|
6
|
+
|
|
7
|
+
<ul class="post-list">
|
|
8
|
+
{% for post in page.posts %}
|
|
9
|
+
<li class="post-item">
|
|
10
|
+
<h2>
|
|
11
|
+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
|
12
|
+
</h2>
|
|
13
|
+
<time>{{ post.date | date: "%B %d, %Y" }}</time>
|
|
14
|
+
{% if post.description %}
|
|
15
|
+
<p>{{ post.description | strip_html }}</p>
|
|
16
|
+
{% endif %}
|
|
17
|
+
</li>
|
|
18
|
+
{% endfor %}
|
|
19
|
+
</ul>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Jekyll
|
|
4
|
+
class TaxonomyPages < Generator
|
|
5
|
+
safe true
|
|
6
|
+
|
|
7
|
+
def generate(site)
|
|
8
|
+
site.tags.each do |tag, posts|
|
|
9
|
+
site.pages << TaxonomyPage.new(
|
|
10
|
+
site,
|
|
11
|
+
site.source,
|
|
12
|
+
File.join('tags', tag.downcase.gsub(' ', '-')),
|
|
13
|
+
'tag.html',
|
|
14
|
+
tag,
|
|
15
|
+
posts
|
|
16
|
+
)
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
site.categories.each do |category, posts|
|
|
20
|
+
site.pages << TaxonomyPage.new(
|
|
21
|
+
site,
|
|
22
|
+
site.source,
|
|
23
|
+
File.join('categories', category.downcase.gsub(' ', '-')),
|
|
24
|
+
'category.html',
|
|
25
|
+
category,
|
|
26
|
+
posts
|
|
27
|
+
)
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
class TaxonomyPage < Page
|
|
33
|
+
def initialize(site, base, dir, layout, name, posts)
|
|
34
|
+
@site = site
|
|
35
|
+
@base = base
|
|
36
|
+
@dir = dir
|
|
37
|
+
@name = 'index.html'
|
|
38
|
+
|
|
39
|
+
process(@name)
|
|
40
|
+
read_yaml(File.join(base, '_layouts'), layout)
|
|
41
|
+
|
|
42
|
+
data['posts'] = posts
|
|
43
|
+
data[layout.sub('.html', '')] = name
|
|
44
|
+
data['title'] = name
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
data/_sass/nyx/_base.scss
CHANGED
|
@@ -27,6 +27,22 @@ a:hover {
|
|
|
27
27
|
text-decoration: underline;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
header a {
|
|
31
|
+
color: $muted;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
header a:hover {
|
|
35
|
+
text-decoration: none;
|
|
36
|
+
color: $fg
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
header ul{
|
|
40
|
+
display: flex;
|
|
41
|
+
flex-direction: row;
|
|
42
|
+
justify-content: space-around;
|
|
43
|
+
list-style-type: none;
|
|
44
|
+
}
|
|
45
|
+
|
|
30
46
|
img {
|
|
31
47
|
max-width: 100%;
|
|
32
48
|
height: auto;
|
|
@@ -35,6 +51,6 @@ img {
|
|
|
35
51
|
|
|
36
52
|
hr {
|
|
37
53
|
border: none;
|
|
38
|
-
border-top: 2px solid
|
|
54
|
+
border-top: 2px solid $fg;
|
|
39
55
|
margin: 1.5rem 0;
|
|
40
56
|
}
|
data/_sass/nyx/_layout.scss
CHANGED
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
@use "variables" as *;
|
|
2
2
|
|
|
3
|
-
#sidebar-list {
|
|
4
|
-
display: flex;
|
|
5
|
-
flex-direction: row;
|
|
6
|
-
justify-content: space-around;
|
|
7
|
-
list-style-type: none;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
3
|
header,
|
|
11
4
|
footer {
|
|
12
5
|
padding: $space-2 $space-3;
|
|
@@ -15,6 +8,118 @@ footer {
|
|
|
15
8
|
main {
|
|
16
9
|
display: flex;
|
|
17
10
|
flex-direction: column;
|
|
18
|
-
padding: $space-4;
|
|
11
|
+
padding: $space-4 25vw;
|
|
19
12
|
min-width: 0;
|
|
13
|
+
|
|
14
|
+
@media (max-width: 600px) {
|
|
15
|
+
padding: $space-4;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/* STYLING FOR /POSTS/ */
|
|
20
|
+
|
|
21
|
+
.post-list {
|
|
22
|
+
list-style: none;
|
|
23
|
+
padding: 0;
|
|
24
|
+
margin: 2rem 0;
|
|
25
|
+
|
|
26
|
+
display: grid;
|
|
27
|
+
grid-template-columns: 1fr;
|
|
28
|
+
gap: 1.5rem;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.post-item {
|
|
32
|
+
background: $card-bg;
|
|
33
|
+
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
34
|
+
border-radius: 0.75rem;
|
|
35
|
+
padding: 1.5rem;
|
|
36
|
+
|
|
37
|
+
transition: transform 0.15s ease, box-shadow 0.15s ease;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.post-item:hover {
|
|
41
|
+
transform: translateY(-2px);
|
|
42
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
|
|
43
|
+
text-decoration: none;
|
|
44
|
+
position: relative;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.post-item h2 {
|
|
48
|
+
margin: 0 0 0.25rem 0;
|
|
49
|
+
font-size: 1.4rem;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.post-item h2 a {
|
|
53
|
+
text-decoration: none;
|
|
54
|
+
color: inherit;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.post-item h2 a:hover {
|
|
58
|
+
text-decoration: underline;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.post-item h2 a::after {
|
|
62
|
+
content: "";
|
|
63
|
+
position: absolute;
|
|
64
|
+
inset: 0;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.post-item time {
|
|
68
|
+
display: block;
|
|
69
|
+
font-size: 0.85rem;
|
|
70
|
+
color: $muted;
|
|
71
|
+
margin-bottom: 0.75rem;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.post-item p {
|
|
75
|
+
margin: 0;
|
|
76
|
+
color: $fg;
|
|
77
|
+
line-height: 1.6;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/* taxonomy lists (tags + categories) */
|
|
81
|
+
|
|
82
|
+
.taxonomy-list {
|
|
83
|
+
list-style: none;
|
|
84
|
+
padding: 0;
|
|
85
|
+
margin: $space-4 0;
|
|
86
|
+
|
|
87
|
+
display: grid;
|
|
88
|
+
grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
|
|
89
|
+
gap: $space-3;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.taxonomy-item {
|
|
93
|
+
background: $bg-alt;
|
|
94
|
+
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
95
|
+
border-radius: $radius;
|
|
96
|
+
transition: transform 0.15s ease, box-shadow 0.15s ease;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.taxonomy-item a {
|
|
100
|
+
display: flex;
|
|
101
|
+
align-items: center;
|
|
102
|
+
justify-content: space-between;
|
|
103
|
+
|
|
104
|
+
padding: $space-3;
|
|
105
|
+
text-decoration: none;
|
|
106
|
+
color: $fg;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.taxonomy-item:hover {
|
|
110
|
+
transform: translateY(-2px);
|
|
111
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.taxonomy-name {
|
|
115
|
+
font-size: 1rem;
|
|
116
|
+
font-weight: 600;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.taxonomy-count {
|
|
120
|
+
font-size: 0.85rem;
|
|
121
|
+
color: $muted;
|
|
122
|
+
background: rgba(255, 255, 255, 0.06);
|
|
123
|
+
padding: 0.15rem 0.5rem;
|
|
124
|
+
border-radius: 999px;
|
|
20
125
|
}
|
data/_sass/nyx/_variables.scss
CHANGED
data/_tabs/about.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
permalink: /about/
|
|
4
|
+
order: 4
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
<h1>About</h1>
|
|
8
|
+
|
|
9
|
+
This is your "about me" page, where you can add anything about yourself that you wish for the world to know. It uses the default layout rather than the post layout. Feel free to drop your work experience, resume, or just a little blurb about who you are and who you're trying to become.
|
data/_tabs/categories.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
permalink: /categories/
|
|
4
|
+
order: 2
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
<h1>Categories</h1>
|
|
8
|
+
|
|
9
|
+
<ul class="taxonomy-list categories-list">
|
|
10
|
+
{% for category in site.categories %}
|
|
11
|
+
{% assign name = category[0] %}
|
|
12
|
+
<li class="taxonomy-item">
|
|
13
|
+
<a href="{{ '/categories/' | append: name | downcase | append: '/' | relative_url }}">
|
|
14
|
+
<span class="taxonomy-name">{{ name }}</span>
|
|
15
|
+
<span class="taxonomy-count">{{ category[1].size }}</span>
|
|
16
|
+
</a>
|
|
17
|
+
</li>
|
|
18
|
+
{% endfor %}
|
|
19
|
+
</ul>
|
data/_tabs/posts.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
permalink: /posts/
|
|
4
|
+
order: 1
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Posts
|
|
8
|
+
|
|
9
|
+
<ul class="post-list">
|
|
10
|
+
{% for post in site.posts %}
|
|
11
|
+
<li class="post-item">
|
|
12
|
+
<h2>
|
|
13
|
+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
|
14
|
+
</h2>
|
|
15
|
+
<time datetime="{{ post.date | date_to_xmlschema }}">
|
|
16
|
+
{{ post.author }} - {{ post.date | date: "%B %d, %Y" }}
|
|
17
|
+
</time>
|
|
18
|
+
{% if post.description %}
|
|
19
|
+
<p>{{ post.description | strip_html }}</p>
|
|
20
|
+
{% endif %}
|
|
21
|
+
</li>
|
|
22
|
+
{% endfor %}
|
|
23
|
+
</ul>
|
|
24
|
+
|
data/_tabs/tags.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
permalink: /tags/
|
|
4
|
+
order: 3
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
<h1>Tags</h1>
|
|
8
|
+
|
|
9
|
+
<ul class="taxonomy-list tags-list">
|
|
10
|
+
{% for tag in site.tags %}
|
|
11
|
+
{% assign name = tag[0] %}
|
|
12
|
+
<li class="taxonomy-item">
|
|
13
|
+
<a href="{{ '/tags/' | append: name | append: '/' | relative_url }}">
|
|
14
|
+
<span class="taxonomy-name">{{ name }}</span>
|
|
15
|
+
<span class="taxonomy-count">{{ tag[1].size }}</span>
|
|
16
|
+
</a>
|
|
17
|
+
</li>
|
|
18
|
+
{% endfor %}
|
|
19
|
+
</ul>
|
data/index.md
CHANGED
|
@@ -3,8 +3,110 @@ layout: default
|
|
|
3
3
|
title: Home
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
#
|
|
6
|
+
# jekyll-theme-nyx
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Nyx is a dark mode based Jekyll theme focused on readability, clean typography, and simple blogging. It is designed to work out-of-the-box as a RubyGem-based theme while still being easy to customize via SCSS.
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
Add this line to your Jekyll site’s `Gemfile`:
|
|
15
|
+
|
|
16
|
+
```ruby
|
|
17
|
+
gem "jekyll-theme-nyx"
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Then install the gem:
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
bundle install
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Next, enable the theme in your _config.yml:
|
|
27
|
+
|
|
28
|
+
```yml
|
|
29
|
+
theme: jekyll-theme-nyx
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Build or serve your site to verify everything works:
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
bundle exec jekyll serve
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Usage
|
|
39
|
+
|
|
40
|
+
This theme follows standard Jekyll conventions.
|
|
41
|
+
|
|
42
|
+
### Layouts
|
|
43
|
+
|
|
44
|
+
Nyx provides the following layouts:
|
|
45
|
+
|
|
46
|
+
- `default` – base layout
|
|
47
|
+
- `post` – blog post layout
|
|
48
|
+
|
|
49
|
+
You can select a layout per page or post:
|
|
50
|
+
|
|
51
|
+
```yml
|
|
52
|
+
layout: post
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Styling
|
|
56
|
+
|
|
57
|
+
All styles are written in SCSS and live under:
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
_sass/nyx/
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
The main entrypoint is:
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
assets/css/nyx.scss
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
If you want to override styles, you can:
|
|
70
|
+
|
|
71
|
+
- copy partials from `_sass/nyx/` into your own project
|
|
72
|
+
- or add custom styles after importing `nyx.scss`
|
|
73
|
+
|
|
74
|
+
### Includes
|
|
75
|
+
|
|
76
|
+
Reusable components live in `_includes/`, such as:
|
|
77
|
+
|
|
78
|
+
- `sidebar.html`
|
|
79
|
+
|
|
80
|
+
These can be overridden by copying them into your site’s `_includes/` directory.
|
|
81
|
+
|
|
82
|
+
## Development
|
|
83
|
+
|
|
84
|
+
To work on the theme locally:
|
|
85
|
+
|
|
86
|
+
```sh
|
|
87
|
+
bundle install
|
|
88
|
+
bundle exec jekyll serve
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
This repository includes a dummy Jekyll site for testing theme changes.
|
|
92
|
+
|
|
93
|
+
Useful tasks:
|
|
94
|
+
|
|
95
|
+
```sh
|
|
96
|
+
rake site # build the dummy site
|
|
97
|
+
rake build # build the gem
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
Built gems are placed in the pkg/ directory.
|
|
101
|
+
|
|
102
|
+
## Contributing
|
|
103
|
+
|
|
104
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/Slavetomints/jekyll-theme-nyx. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/Slavetomints/jekyll-theme-nyx/blob/main/CODE_OF_CONDUCT.md).
|
|
105
|
+
|
|
106
|
+
## License
|
|
107
|
+
|
|
108
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
109
|
+
|
|
110
|
+
## Code of Conduct
|
|
111
|
+
|
|
112
|
+
Everyone interacting in the jekyll-theme-nyx project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/Slavetomints/jekyll-theme-nyx/blob/main/CODE_OF_CONDUCT.md).
|
data/jekyll-theme-nyx.gemspec
CHANGED
|
@@ -1,44 +1,42 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
|
-
spec.name =
|
|
5
|
-
spec.version =
|
|
6
|
-
spec.authors = [
|
|
7
|
-
spec.email = [
|
|
4
|
+
spec.name = 'jekyll-theme-nyx'
|
|
5
|
+
spec.version = '0.3.1'
|
|
6
|
+
spec.authors = ['Slavetomints']
|
|
7
|
+
spec.email = ['me@slavetomints.com']
|
|
8
8
|
|
|
9
|
-
spec.summary =
|
|
9
|
+
spec.summary = 'Simple Jekyll Theme'
|
|
10
10
|
spec.description = <<~DESC
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
Nyx is a dark mode based Jekyll theme focused on readability,
|
|
12
|
+
clean typography, and simple blogging.
|
|
13
13
|
DESC
|
|
14
|
-
spec.homepage =
|
|
15
|
-
spec.license =
|
|
16
|
-
spec.required_ruby_version =
|
|
14
|
+
spec.homepage = 'https://github.com/Slavetomints/jekyll-theme-nyx'
|
|
15
|
+
spec.license = 'MIT'
|
|
16
|
+
spec.required_ruby_version = '>= 3.1.0'
|
|
17
17
|
|
|
18
|
-
spec.metadata[
|
|
19
|
-
spec.metadata[
|
|
20
|
-
spec.metadata[
|
|
21
|
-
spec.metadata[
|
|
22
|
-
spec.metadata[
|
|
23
|
-
spec.metadata[
|
|
24
|
-
spec.metadata[
|
|
25
|
-
spec.metadata[
|
|
18
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
19
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
|
20
|
+
spec.metadata['source_code_uri'] = spec.homepage
|
|
21
|
+
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
|
|
22
|
+
spec.metadata['bug_tracker_uri'] = "#{spec.homepage}/issues"
|
|
23
|
+
spec.metadata['documentation_uri'] = "#{spec.homepage}#readme"
|
|
24
|
+
spec.metadata['theme'] = 'true'
|
|
25
|
+
spec.metadata['jekyll_theme'] = 'true'
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
spec.add_runtime_dependency "jekyll", "~> 4.0"
|
|
27
|
+
spec.add_dependency 'jekyll', '~> 4.0'
|
|
29
28
|
|
|
30
29
|
spec.cert_chain = ['certs/slavetomints.pem']
|
|
31
|
-
spec.signing_key = File.expand_path(
|
|
30
|
+
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem') if $0 =~ /gem\z/
|
|
32
31
|
|
|
33
32
|
# Specify which files should be added to the gem when it is released.
|
|
34
33
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
35
34
|
spec.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
35
|
+
ls.readlines("\x0", chomp: true).select do |f|
|
|
36
|
+
# Only include files that actually exist
|
|
37
|
+
File.file?(File.join(__dir__, f))
|
|
39
38
|
end
|
|
40
39
|
end
|
|
41
40
|
|
|
42
|
-
spec.require_paths = [
|
|
43
|
-
|
|
41
|
+
spec.require_paths = ['lib']
|
|
44
42
|
end
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-nyx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Slavetomints
|
|
@@ -60,7 +60,12 @@ executables: []
|
|
|
60
60
|
extensions: []
|
|
61
61
|
extra_rdoc_files: []
|
|
62
62
|
files:
|
|
63
|
-
- ".github/
|
|
63
|
+
- ".github/CONTRIBUTING.MD"
|
|
64
|
+
- ".github/ISSUE_TEMPLATE/bug_report.yml"
|
|
65
|
+
- ".github/ISSUE_TEMPLATE/config.yml"
|
|
66
|
+
- ".github/ISSUE_TEMPLATE/feature_request.yml"
|
|
67
|
+
- ".github/pull_request_template.md"
|
|
68
|
+
- ".github/workflows/build-and-deploy.yml"
|
|
64
69
|
- ".gitignore"
|
|
65
70
|
- CHANGELOG.md
|
|
66
71
|
- CODE_OF_CONDUCT.md
|
|
@@ -69,10 +74,14 @@ files:
|
|
|
69
74
|
- LICENSE.txt
|
|
70
75
|
- README.md
|
|
71
76
|
- Rakefile
|
|
77
|
+
- SECURITY.md
|
|
72
78
|
- _config.yml
|
|
73
|
-
- _includes/
|
|
79
|
+
- _includes/header.html
|
|
80
|
+
- _layouts/category.html
|
|
74
81
|
- _layouts/default.html
|
|
75
82
|
- _layouts/post.md
|
|
83
|
+
- _layouts/tag.html
|
|
84
|
+
- _plugins/taxonomy_pages.rb
|
|
76
85
|
- _posts/2026-01-02-markdown-showcase.md
|
|
77
86
|
- _sass/nyx/_base.scss
|
|
78
87
|
- _sass/nyx/_code.scss
|
|
@@ -80,6 +89,10 @@ files:
|
|
|
80
89
|
- _sass/nyx/_rouge.scss
|
|
81
90
|
- _sass/nyx/_typography.scss
|
|
82
91
|
- _sass/nyx/_variables.scss
|
|
92
|
+
- _tabs/about.md
|
|
93
|
+
- _tabs/categories.md
|
|
94
|
+
- _tabs/posts.md
|
|
95
|
+
- _tabs/tags.md
|
|
83
96
|
- assets/css/nyx.scss
|
|
84
97
|
- assets/img/black-logo.svg
|
|
85
98
|
- assets/img/white-logo.svg
|
metadata.gz.sig
CHANGED
|
Binary file
|
data/_includes/sidebar.html
DELETED
|
File without changes
|