artistic 0.3.0 → 0.4.0

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +0 -2
  3. data/_includes/header.html +10 -7
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b0647c8e77f7c2440134706bd102a8bd16d1abb2a16fda1d65ee4bd0dc42d77f
4
- data.tar.gz: '018a91b51129f5017dda23ff914e6d497f10b5bc7b4c07798df572e029ab44d4'
3
+ metadata.gz: f91a37a3a0a4aa02575e85c8bea3d82064626d5d42ec3b8538cbfd237946cf2b
4
+ data.tar.gz: 706d3d8b10331f1c4c1486a7f6dc7ed077e489df83a1fff7a79e05ab0586f8ed
5
5
  SHA512:
6
- metadata.gz: 07ea8642a146250236957b9f3cd2e78d2476c906ff327735afcc708cef62e5c7aac34497f06efed6d7a7e8e233717e091568ebacba39cfac37aaa0a07e49f113
7
- data.tar.gz: 401450e58d4e9c0fdee1dae38a2b2754a806b614cd11d872cba4ab7df17be02e4d3ec39015bd2e78bf3c0374992114cdf1985eb2541e293f00e85688751966cf
6
+ metadata.gz: 5e1fe753f608c985eb9eaf9e14f1116dd059d97318f6e2a7156a5ddec3a50a17b91c2ff18e79e23fd060e9701aaf32aaef298889a6419358067b7566bd6ee003
7
+ data.tar.gz: 1503d1997c7d78afdfcdb99378148288054be239dd15341f410548a95dfd124baa8db574d58fa7d1ad7e4e2c3a4d121be9cda792e89dde3f8fc82ab4f54e2868
data/README.md CHANGED
@@ -4,8 +4,6 @@ Welcome to your new Jekyll theme! In this directory, you'll find the files you n
4
4
 
5
5
  To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
6
 
7
- TODO: Delete this and the text above, and describe your gem
8
-
9
7
  ## Installation
10
8
 
11
9
  Add this line to your Jekyll site's `Gemfile`:
@@ -1,17 +1,18 @@
1
-
2
-
3
1
  <nav class="bg-white border-gray-200 dark:bg-gray-900">
4
2
  <div class="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-4">
5
3
  {%- assign default_paths = site.pages | map: "path" -%}
6
4
  {%- assign page_paths = site.header_pages | default: default_paths -%}
7
5
  {%- assign titles_size = site.pages | map: 'title' | join: '' | size -%}
8
- <a class="flex items-center space-x-3 rtl:space-x-reverse" rel="author" href="{{ '/' | relative_url }}">
6
+ <a class="flex items-center space-x-3 rtl:space-x-reverse" href="{{ '/' | relative_url }}" rel="author">
9
7
  <span class="self-center text-2xl font-semibold whitespace-nowrap dark:text-white">{{ site.title | escape }}</span>
10
8
  </a>
11
- <button data-collapse-toggle="navbar-default" type="button" class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600" aria-controls="navbar-default" aria-expanded="false">
9
+ <button aria-controls="navbar-default" aria-expanded="false"
10
+ class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600"
11
+ data-collapse-toggle="navbar-default" type="button">
12
12
  <span class="sr-only">Open main menu</span>
13
- <svg class="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 14">
14
- <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M1 1h15M1 7h15M1 13h15"/>
13
+ <svg aria-hidden="true" class="w-5 h-5" fill="none" viewBox="0 0 17 14" xmlns="http://www.w3.org/2000/svg">
14
+ <path d="M1 1h15M1 7h15M1 13h15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
15
+ stroke-width="2"/>
15
16
  </svg>
16
17
  </button>
17
18
  {%- if titles_size > 0 -%}
@@ -21,7 +22,9 @@
21
22
  {%- assign my_page = site.pages | where: "path", path | first -%}
22
23
  {%- if my_page.title -%}
23
24
  <li class="py-2">
24
- <a href="{{ my_page.url | relative_url }}" class="block py-2 px-3 text-white bg-blue-700 rounded md:bg-transparent md:text-blue-700 md:p-0 dark:text-white md:dark:text-blue-500 hover:underline" aria-current="page">
25
+ <a aria-current="page"
26
+ class="block py-2 px-3 text-white bg-blue-700 rounded md:bg-transparent md:text-blue-700 md:p-0 dark:text-white md:dark:text-blue-500 hover:underline"
27
+ href="{{ my_page.url | relative_url }}">
25
28
  {{ my_page.title | escape }}
26
29
  </a>
27
30
  </li>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: artistic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - emrekayik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-26 00:00:00.000000000 Z
11
+ date: 2024-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll