elixir-toolkit-theme 1.5.3 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 00da0a5b7d0bc3ddd51214265e2f9da0537c1b08410b0981ab371a796c5e90f7
4
- data.tar.gz: 7ddf435b57d0680929dd4007e6c1ba67bb33ba0fb9cd8829fb0d93547775eef0
3
+ metadata.gz: 835140721cbcda81fe83a1ae4a85a1b049c459aebd069b3143fdbdb46673c0b6
4
+ data.tar.gz: eb472bbf8edc2ddb7926b70c6867484ee19c935dc3285c15c673be7b09201b73
5
5
  SHA512:
6
- metadata.gz: b7c081a6dff79c4c2b79b90380f6f8703314320d567a528457f234a51accae26184e6354f3d8e6ae19d3f8f06a6e927150d30ca2cf49106eda01b0b30a715a08
7
- data.tar.gz: 72a5c00a0b0b705b7c65a0e37547dcd51c7f8cd757604d14f4e4503d61f75892fda720b5ef9f2f299ff06381c12c0b73e6b473a37c0ec852e819d5a9abd7a91f
6
+ metadata.gz: '0796770b120d052558c0cd2130c5d01de009a8ab5c6886b6562f46a4b430c7c7d8d9ed9a22c741151c90d503b3292b3af8463c7c1e195c5b2c6b3a50b0fefe84'
7
+ data.tar.gz: 774dd67da3fc8be7a5ddd7af6c6463aeae7e14077256df8891b34242880909b9b72e26685446618ac5283925c4429583e4ff6259725a69e00d832739b7161a7c
@@ -25,6 +25,6 @@
25
25
  </div>
26
26
  <script>
27
27
  $(function () {
28
- show_{ { include.event_type } } s();
28
+ show_{{ include.event_type }}s();
29
29
  });
30
30
  </script>
data/_includes/head.html CHANGED
@@ -16,8 +16,8 @@
16
16
  <meta property="og:description" content="{{ site.description }}" />
17
17
  <meta property="og:image" content="//{{site.github.url | remove: 'https://' | remove: 'http://'}}/assets/img/apple-touch-icon.png" />
18
18
  <meta name="apple-mobile-web-app-title" content="{{site.title}}">
19
- <meta name="msapplication-TileColor" content="#{{site.theme_variables.theme_color}}">
20
- <meta name="theme-color" content="#{{site.theme_variables.theme_color}}">
19
+ <meta name="msapplication-TileColor" content="#{{site.theme_variables.theme_color | default: 0d6efd }}">
20
+ <meta name="theme-color" content="#{{site.theme_variables.theme_color | default: 0d6efd }}">
21
21
  {%- if page.search_exclude == true and page.url != "/index.html" %}
22
22
  <meta name="robots" content="noindex" />
23
23
  {%- endif %}
@@ -74,7 +74,7 @@
74
74
  <link rel="icon" type="image/png" sizes="32x32" href="{{ 'assets/img/favicon-32x32.png' | relative_url }}">
75
75
  <link rel="icon" type="image/png" sizes="16x16" href="{{ 'assets/img/favicon-16x16.png' | relative_url }}">
76
76
  <link rel="manifest" href="{{ 'assets/img/site.webmanifest' | relative_url }}">
77
- <link rel="mask-icon" href="{{ 'assets/img/safari-pinned-tab.svg' | relative_url }}" color="#{{site.theme_variables.theme_color}}">
77
+ <link rel="mask-icon" href="{{ 'assets/img/safari-pinned-tab.svg' | relative_url }}" color="#{{site.theme_variables.theme_color | default: 0d6efd }}">
78
78
  <link rel="shortcut icon" href="{{ 'assets/img/favicon.ico' | relative_url }}">
79
79
  <!-- Schema.org metadata -->
80
80
  {% include schemasorg.html %}
data/_layouts/page.html CHANGED
@@ -9,14 +9,23 @@ layout: default
9
9
  {%- else %}
10
10
  <h1>{{ page.title }}
11
11
  {%- endif %}
12
+ {%- if site.theme_variables.github_buttons.edit_me or site.theme_variables.github_buttons.open_issue or site.theme_variables.github_buttons.history or site.theme_variables.github_buttons.edit_me == nil or site.theme_variables.github_buttons.open_issue == nil or site.theme_variables.github_buttons.history == nil %}
12
13
  <div class="btn-group">
14
+ {%- if site.theme_variables.github_buttons.edit_me or site.theme_variables.github_buttons.edit_me == nil %}
13
15
  {%- if page.custom-editme %}
14
16
  <a role="button" data-bs-toggle="tooltip" title="Propose changes to the content of this page on {{site.theme_variables.git_host | default: 'GitHub' }}" href="{{site.github.repository_url}}/blob/{{site.github.source.branch}}/{{page.custom-editme}}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-pencil-alt"></i></a>
15
17
  {%- else %}
16
18
  <a role="button" data-bs-toggle="tooltip" title="Propose changes to this page on {{site.theme_variables.git_host | default: 'GitHub' }}" href="{{site.github.repository_url}}/blob/{{site.github.source.branch}}/{{page.path}}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-pencil-alt"></i></a>
17
19
  {%- endif %}
20
+ {%- endif %}
21
+ {%- if site.theme_variables.github_buttons.open_issue or site.theme_variables.github_buttons.open_issue == nil %}
22
+ <a role="button" data-bs-toggle="tooltip" title="Report an issue" href="{{site.github.repository_url}}/issues/new?title={{'Issue on page: ' | url_encode }}{{page.title | url_encode }}&amp;body={{'I would like to report an issue on the ' | url_encode }}{{page.title | url_encode }}{{' page at `'| url_encode }}{{page.url | url_encode }}{{'`. Description of the issue:' | url_encode }}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-exclamation"></i></a>
23
+ {%- endif %}
24
+ {%- if site.theme_variables.github_buttons.history or site.theme_variables.github_buttons.history == nil %}
18
25
  <a role="button" data-bs-toggle="tooltip" title="Check out the history of this page" href="{{site.github.repository_url}}/commits/{{site.github.source.branch}}/{{page.path}}" class="btn btn-sm hover-primary text-primary"><i class="fas fa-history"></i></a>
26
+ {%- endif %}
19
27
  </div>
28
+ {%- endif %}
20
29
  </h1>
21
30
  {%- endif %}
22
31
  {%- if page.summary %}
@@ -0,0 +1,6 @@
1
+ /*-----Top navigation-----*/
2
+
3
+ .navbar-nav .nav-item > a.active {
4
+ border-bottom: 4px solid $primary;
5
+ margin-bottom: -4px;
6
+ }
data/assets/css/main.scss CHANGED
@@ -1,4 +1,5 @@
1
1
  ---
2
+ layout: none
2
3
  permalink: assets/css/main.css
3
4
  ---
4
5
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1 +1,57 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 435 435"><defs><style>.cls-1{fill:#0d6efd;}.cls-2{fill:#fff;}</style></defs><circle class="cls-1" cx="217.5" cy="217.5" r="217.5"/><path class="cls-2" d="M278.6,367.82q0,10.89-6.89,17.77t-17.77,6.89H173.07q-10.89,0-17.78-6.89t-6.88-17.77v-88.2h30.88v85.53h68.43V44.79H278.6Z" transform="translate(0 -0.68)"/></svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ id="svg8"
9
+ version="1.1"
10
+ height="800"
11
+ width="800">
12
+ <metadata
13
+ id="metadata14">
14
+ <rdf:RDF>
15
+ <cc:Work
16
+ rdf:about="">
17
+ <dc:format>image/svg+xml</dc:format>
18
+ <dc:type
19
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
20
+ <dc:title></dc:title>
21
+ </cc:Work>
22
+ </rdf:RDF>
23
+ </metadata>
24
+ <defs
25
+ id="defs12" />
26
+ <g
27
+ id="g6">
28
+ <title
29
+ id="title2">Layer 1</title>
30
+ <path
31
+ style="fill:#ffffff"
32
+ id="path837"
33
+ d="M 427.07422 798.56055 L 427.07422 200.65234 L 479.24805 200.65234 L 479.24805 151.07031 L 311.76953 151.07031 L 311.76953 200.65234 L 367.69141 200.65234 L 367.69141 797.90234 A 400 399.51779 0 0 0 400 799.51758 A 400 399.51779 0 0 0 427.07422 798.56055 z " />
34
+ <path
35
+ style="fill:#0d6efd"
36
+ id="path843"
37
+ d="M 746.24023 200.65234 L 616.39062 200.65234 L 616.39062 735.87695 A 400 399.51779 0 0 0 800 400 A 400 399.51779 0 0 0 746.24023 200.65234 z " />
38
+ <path
39
+ style="fill:#ffffff"
40
+ id="path841"
41
+ d="M 712.36719 151.07031 L 501.08594 151.07031 L 501.08594 200.65234 L 557.00781 200.65234 L 557.00781 766.91211 A 400 399.51779 0 0 0 616.39062 735.87695 L 616.39062 200.65234 L 746.24023 200.65234 A 400 399.51779 0 0 0 712.36719 151.07031 z " />
42
+ <path
43
+ style="fill:#0d6efd"
44
+ id="svg_2"
45
+ d="M 400 0.48242188 A 400 399.51779 0 0 0 0 400 A 400 399.51779 0 0 0 367.69141 797.90234 L 367.69141 200.65234 L 311.76953 200.65234 L 311.76953 151.07031 L 479.24805 151.07031 L 479.24805 200.65234 L 427.07422 200.65234 L 427.07422 798.56055 A 400 399.51779 0 0 0 557.00781 766.91211 L 557.00781 200.65234 L 501.08594 200.65234 L 501.08594 151.07031 L 712.36719 151.07031 A 400 399.51779 0 0 0 400 0.48242188 z " />
46
+ <g
47
+ id="svg_4"
48
+ style="font-size:24px;font-family:Antonio;text-anchor:start;fill:#ffffff;stroke-width:0"
49
+ transform="matrix(24.5982 0 0 24.5982 -15937.9 -13644)"
50
+ aria-label="ETT">
51
+ <path
52
+ id="path821"
53
+ style="font-size:24px;font-family:Antonio;text-anchor:start;fill:#ffffff;stroke-width:0"
54
+ d="m 653.48785,581.44128 v -20.625 h 6.16407 v 2.01563 h -3.73828 v 7.05469 h 3.53906 v 2.01562 h -3.53906 v 7.52344 h 3.78515 v 2.01562 z" />
55
+ </g>
56
+ </g>
57
+ </svg>
@@ -9,15 +9,17 @@ Created by potrace 1.14, written by Peter Selinger 2001-2017
9
9
  </metadata>
10
10
  <g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)"
11
11
  fill="#000000" stroke="none">
12
- <path d="M3280 6994 c-19 -2 -84 -9 -145 -14 -639 -62 -1264 -315 -1795 -726
13
- -149 -115 -481 -446 -595 -594 -410 -532 -653 -1132 -727 -1795 -17 -155 -17
14
- -575 0 -730 75 -673 332 -1300 748 -1820 114 -143 339 -372 484 -494 537 -451
15
- 1163 -717 1885 -803 142 -17 586 -17 730 0 682 79 1268 318 1802 734 138 107
16
- 389 351 512 498 451 538 717 1162 803 1885 16 139 16 595 0 730 -77 629 -275
17
- 1158 -620 1649 -234 333 -577 668 -917 896 -460 308 -968 495 -1535 566 -117
18
- 15 -552 27 -630 18z m1198 -3362 l-3 -2657 -32 -66 c-39 -79 -102 -140 -181
19
- -177 l-57 -27 -770 0 -770 0 -67 33 c-80 39 -148 111 -181 192 l-22 55 -3 763
20
- -2 762 250 0 250 0 0 -690 0 -690 548 2 547 3 3 2578 2 2577 245 0 245 0 -2
21
- -2658z"/>
12
+ <path d="M3310 6990 c-846 -46 -1636 -391 -2244 -980 -592 -573 -956 -1320
13
+ -1048 -2145 -17 -152 -16 -584 0 -730 75 -644 301 -1218 674 -1717 594 -793
14
+ 1479 -1294 2461 -1393 l67 -7 0 2611 0 2611 -245 0 -245 0 0 220 0 220 730 0
15
+ 730 0 0 -220 0 -220 -225 0 -225 0 0 -2615 0 -2615 38 5 c20 2 78 9 127 15
16
+ 295 35 684 135 913 236 l52 23 0 2475 0 2476 -242 2 -243 3 0 215 0 215 923 3
17
+ 923 2 -63 77 c-88 107 -294 313 -410 410 -487 406 -1064 675 -1668 777 -252
18
+ 43 -537 59 -780 46z m-790 -1530 l0 -220 -400 0 -400 0 0 -755 0 -755 380 0
19
+ 380 0 0 -220 0 -220 -380 0 -380 0 0 -810 0 -810 405 0 405 0 0 -215 0 -215
20
+ -665 0 -665 0 0 2220 0 2220 660 0 660 0 0 -220z"/>
21
+ <path d="M5400 2904 c0 -1865 3 -2334 13 -2328 218 127 588 457 790 705 428
22
+ 526 687 1133 773 1814 22 172 25 594 6 760 -32 272 -89 525 -172 769 -57 167
23
+ -159 403 -228 526 l-48 85 -567 3 -567 2 0 -2336z"/>
22
24
  </g>
23
25
  </svg>
@@ -3,7 +3,8 @@ layout: none
3
3
  permalink: assets/img/site.webmanifest
4
4
  ---
5
5
  {
6
- "name": "{{site.title}}",
6
+ "name": "",
7
+ "short_name": "",
7
8
  "icons": [
8
9
  {
9
10
  "src": "android-chrome-192x192.png",
@@ -16,7 +17,7 @@ permalink: assets/img/site.webmanifest
16
17
  "type": "image/png"
17
18
  }
18
19
  ],
19
- "theme_color": "#{{site.theme_variables.theme_color}}",
20
- "background_color": "#fff",
20
+ "theme_color": "#{{ site.theme_variables.theme_color | default: '0d6efd' }}",
21
+ "background_color": "#ffffff",
21
22
  "display": "standalone"
22
23
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elixir-toolkit-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.3
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - bedroesb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-02 00:00:00.000000000 Z
11
+ date: 2022-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -452,7 +452,6 @@ files:
452
452
  - assets/img/favicon-16x16.png
453
453
  - assets/img/favicon-32x32.png
454
454
  - assets/img/favicon.ico
455
- - assets/img/jekyll_theme.svg
456
455
  - assets/img/jekyll_theme_question.svg
457
456
  - assets/img/jekyll_theme_question_inverted.svg
458
457
  - assets/img/main_logo.svg
@@ -1 +0,0 @@
1
- <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 435 435"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#0d6efd;}</style></defs><circle class="cls-1" cx="217.5" cy="217.5" r="217.5"/><path class="cls-2" d="M278.6,367.82q0,10.89-6.89,17.77t-17.77,6.89H173.07q-10.89,0-17.78-6.89t-6.88-17.77v-88.2h30.88v85.53h68.43V44.79H278.6Z" transform="translate(0 -0.68)"/></svg>