niri 1.5 → 1.6

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: 4af2ee943213d8e8d60e80e8766de596b2e108883470ac6d010d58e41564af15
4
- data.tar.gz: 243cc8ac348976fc722118057913e2b120daca4bc1ddf89d2be059b47c2ffd79
3
+ metadata.gz: d6f53809d751bac8eb355d62016924f66847689be4a57fce5cc09b8e2888a92f
4
+ data.tar.gz: 68fad13105090d3673f00a80e52b4377f558a53cb6432207e243972724fa2778
5
5
  SHA512:
6
- metadata.gz: 6f53db6f8558c860cc4e3fca9486b49b2d3f9a1c13d70dd8f865d0022e63878ee9c0146cb770d6bd51cb675400bb1f9c6a2e256b65fd2de0fcec813149b0c3c1
7
- data.tar.gz: c0645c01f802aeefe7b4be8b3228daa364c91fcd4b4f105615b7607ad6e9ce7e8991d8b43dc34bc2e9603f3ef1dbcae1de19bdae3e22feb7184bd8d182558a75
6
+ metadata.gz: 6643fce07b97720a2ca2341353ea66e0c833892086063539b7cd5fdf5569081f960626c4e66d16e99db62c1b80b66fb16720216ebf1e7200db1bc35654d55ce9
7
+ data.tar.gz: d89cc69638e6ae8e061c1b04d6078a4f9ae97844ebb1e381e06c04a715b8ee819d94d6b319ee13162aac4a1b87d6586a55533b687e15b191c9862e480ed6789b
data/README.md CHANGED
@@ -46,7 +46,7 @@ Create file 'projects.markdown' to use page Projects.
46
46
 
47
47
  ## Contributing
48
48
 
49
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/niri. 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.
49
+ Bug reports and pull requests are welcome on GitHub at https://github.com/Rokhimin/niri. 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.
50
50
 
51
51
  ## Development
52
52
 
data/_config.yml CHANGED
@@ -5,4 +5,5 @@ baseurl: ""
5
5
  url: ""
6
6
  twitter_username: rokhiminwahid
7
7
  github_username: rokhimin
8
- logo: https://i.ibb.co.com/sdVSmQ5x/niri-logo.png
8
+ logo: https://i.ibb.co.com/sdVSmQ5x/niri-logo.png
9
+ files: "/jekyll-niri"
@@ -1,6 +1,4 @@
1
-
2
-
3
- <footer class="footer has-background-black-ter">
1
+ <footer class="footer">
4
2
  <div class="content has-text-centered">
5
3
  <p>Theme <a href="https://github.com/rokhimin/jekyll-niri"><font color="#fff">Niri</font></a> [/code] by {{ site.title }} &copy;{{ site.time | date: '%Y' }}
6
4
  </p>
data/_includes/head.html CHANGED
@@ -4,22 +4,10 @@
4
4
  <meta name="viewport" content="width=device-width, initial-scale=1">
5
5
  <title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
6
6
  <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
7
- <link rel="stylesheet" href="/assets/css/bulma-1.0.2.css"/>
7
+ <link rel="stylesheet" href="{{ site.files }}/assets/css/bulma-1.0.2.css"/>
8
+ <link rel="stylesheet" href="{{ site.files }}/assets/css/main.css"/>
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
8
10
  <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
9
11
  <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
10
-
11
- <style>
12
- /* Chrome, Safari */
13
- ::-webkit-scrollbar {
14
- width: 15px;
15
- height: 15px;
16
- }
17
- ::-webkit-scrollbar-track-piece {
18
- background-color: #222222;
19
- }
20
- ::-webkit-scrollbar-thumb:vertical {
21
- height: 30px;
22
- background-color: #000;
23
- }
24
- </style>
12
+
25
13
  </head>
@@ -1,11 +1,19 @@
1
- <nav class="navbar has-background-black-ter" role="navigation" aria-label="main navigation">
1
+ <nav class="navbar" role="navigation" aria-label="main navigation">
2
2
  <div class="navbar-brand">
3
3
  <a class="navbar-item" href="/">
4
4
  <img src="{{ site.logo }}" style="width:100%;"></img>
5
5
  </a>
6
6
  </div>
7
- <div class="navbar-menu has-background-black-ter is-active">
7
+ <div class="navbar-menu is-active">
8
8
  <div class="navbar-end">
9
+
10
+ <div class="navbar-item">
11
+ <button class="button is-link is-small" id="toggle-button"><i id="theme-icon" class="fas fa-moon"></i></button>
12
+ </div>
13
+
14
+
15
+ <script type="text/javascript" src="{{ site.files }}/assets/js/darklight-mode.js"></script>
16
+
9
17
  <a class="navbar-item {% if page.url == '/' %}is-active{% endif %}" href="{{ '/' | prepend: site.baseurl }}">
10
18
  Home
11
19
  </a>
@@ -1,15 +1,15 @@
1
1
  <!DOCTYPE html>
2
- <html class="theme-dark">
2
+ <html>
3
3
  {% include head.html %}
4
4
  <body>
5
5
  {% include navigation.html %}
6
6
 
7
- <div class="hero has-background-black-bis is-fullheight">
7
+ <div class="hero is-fullheight">
8
8
  <div class="hero-body">
9
9
  <div class="container">
10
10
  <div class="columns is-centered">
11
11
  <div class="column is-one-two">
12
- <div action="" class="box has-background-black-ter ">
12
+ <div action="" class="box">
13
13
 
14
14
  <div class="field">
15
15
  <div class="content">
data/_layouts/page.html CHANGED
@@ -1,15 +1,15 @@
1
1
  <!DOCTYPE html>
2
- <html class="theme-dark">
2
+ <html>
3
3
  {% include head.html %}
4
4
  <body>
5
5
  {% include navigation.html %}
6
6
 
7
- <div class="hero has-background-black-bis is-fullheight">
7
+ <div class="hero is-fullheight">
8
8
  <div class="hero-body">
9
9
  <div class="container">
10
10
  <div class="columns is-centered">
11
11
  <div class="column is-one-two">
12
- <div action="" class="box has-background-black-ter">
12
+ <div action="" class="box">
13
13
 
14
14
  <div class="field">
15
15
  <div class="content">
data/_layouts/post.html CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
- <h1>{{ page.title }}</h1>
5
- <p>{{ page.date }}</p>
6
- <progress class="progress is-small is-dark" value="100" max="100">15%</progress>
4
+ <h1>{{ page.title }}</h1>
5
+ <p>{{ page.date }}</p>
6
+ <hr>
7
7
  {{ content }}
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: niri
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.5'
4
+ version: '1.6'
5
5
  platform: ruby
6
6
  authors:
7
7
  - rokhimin Wahid
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-18 00:00:00.000000000 Z
10
+ date: 2025-02-27 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: jekyll