jekyll-theme-console-ext 0.2.3 → 1.12

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: 70a06a45e82cc798dd8bc026eda0333a73dab1d5b75b468a6b9b0435c30b397f
4
- data.tar.gz: 40662f46447fc191ff659dd94e81a6eaa6a1a1e5765be4ff8e257c56c31910bf
3
+ metadata.gz: 722102ff89fb9c035f383fdc0667885d5b7cfd0a3efd14f8219c0a28159310b4
4
+ data.tar.gz: c4976dfca8c55795787d22ac9aa7aefd13ec74f67338c85e0086b6c456898941
5
5
  SHA512:
6
- metadata.gz: 1b394cb2e79315bc90fb506322679514946fca0e5fa05f832a42f8307c2e3cb9a9b6c05bf19f4b55ee5842b02bf2d5d1fbe196ec1719337a1a26b89d9ab1601d
7
- data.tar.gz: 72f9da13d325f9db50fc99048aafb1b4e852265fed84c97d029057af661f332cf3a8bc73a7fe5dc1e0bc5af55b589ae85f53b4531ec442eecb708d6c532e1ff0
6
+ metadata.gz: 87874fa620fa1ecc042de881f644ad703aaf7178c57ce27aed4ea503bd350ad8da4d92eb536aa4bb69a0608d89481da45c892aaedce9c9fe1a11f6d82ca8e83e
7
+ data.tar.gz: 89fb854cd7c594b8fb189353270491d4f14c4377007ea35f316100518584e37b93d002be30140ee3cbe5526ec3b57e6e487f4b5a7b0247831583cc25bf4b8db1
data/_includes/head.html CHANGED
@@ -6,26 +6,26 @@
6
6
  {%- seo title=false -%}
7
7
 
8
8
  {% if page.robots %}
9
- <meta name="robots" content="{{page.robots}}" />
9
+ <meta name="robots" content="{{page.robots}}" />
10
10
  {% endif %}
11
11
 
12
12
  {%- if site.listen_for_clients_preferred_style -%}
13
- <link rel="stylesheet" type="text/css" href="{{ "/assets/main.css" | relative_url }}">
13
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main.css" | relative_url }}">
14
14
  {%- else -%}
15
- {%- if site.style == 'light' -%}
16
- <link rel="stylesheet" type="text/css" href="{{ "/assets/main-light.css" | relative_url }}">
17
- {%- elsif site.style == 'hacker' -%}
18
- <link rel="stylesheet" type="text/css" href="{{ "/assets/main-hacker.css" | relative_url }}">
19
- {%- else -%}
20
- <link rel="stylesheet" type="text/css" href="{{ "/assets/main-dark.css" | relative_url }}">
21
- <link rel="stylesheet" type="text/css" href="{{ "/assets/styles.css" | relative_url }}">
22
- <link rel="stylesheet" href="/assets/styles/default.css">
23
- <script src="/assets/highlight.pack.js"></script>
24
- <script>hljs.initHighlightingOnLoad();</script>
25
- {%- endif -%}
15
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/main-dark.css" | relative_url }}">
16
+ <link rel="stylesheet" type="text/css" href="{{ "/assets/styles.css" | relative_url }}">
17
+ <link rel="stylesheet" href="/assets/styles/stackoverflow-dark.css">
18
+ <script src="/assets/highlight.pack.js"></script>
19
+ <script>
20
+ hljs.initHighlightingOnLoad();
21
+ </script>
26
22
  {%- endif -%}
27
23
 
28
24
  {%- if jekyll.environment == 'production' and site.google_analytics -%}
29
- {%- include google-analytics.html -%}
25
+ {%- include google-analytics.html -%}
30
26
  {%- endif -%}
31
- </head>
27
+
28
+ {% if site.tags != "" %}
29
+ {% include collecttags.html %}
30
+ {% endif %}
31
+ </head>
data/_layouts/post.html CHANGED
@@ -2,4 +2,10 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
+ <span>[
6
+ {% for tag in page.tags %}
7
+ {% capture tag_name %}{{ tag }}{% endcapture %}
8
+ <a href="/tag/{{ tag_name }}"><code class="highligher-rouge"><nobr>{{ tag_name }}</nobr></code>&nbsp;</a>
9
+ {% endfor %}
10
+ ]</span>
5
11
  {{ content }}
@@ -10,7 +10,7 @@
10
10
  overflow-x: auto;
11
11
  padding: 0.5em;
12
12
  color: #ffffff;
13
- background: #1c1b1b;
13
+ background: #000000;
14
14
  }
15
15
 
16
16
  .hljs-comment {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-console-ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: '1.12'
5
5
  platform: ruby
6
6
  authors:
7
- - b2a3e8, pedr0silva
7
+ - pedr0silva
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-14 00:00:00.000000000 Z
11
+ date: 2021-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -68,13 +68,11 @@ dependencies:
68
68
  version: '0'
69
69
  description:
70
70
  email:
71
- - ''
71
+ - pmiguelfs@gmail.com
72
72
  executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - LICENSE
77
- - LICENSE.txt
78
76
  - README.md
79
77
  - _includes/footer.html
80
78
  - _includes/google-analytics.html
@@ -216,5 +214,6 @@ requirements: []
216
214
  rubygems_version: 3.2.9
217
215
  signing_key:
218
216
  specification_version: 4
219
- summary: ''
217
+ summary: An extension on b2a3e8's jekyll-theme-console-ext. Added centered images
218
+ and highlight.js. Feel free to check out my personal website for a quick demo (pedr0silva.github.io)
220
219
  test_files: []
data/LICENSE DELETED
@@ -1,29 +0,0 @@
1
- BSD 3-Clause License
2
-
3
- Copyright (c) 2006, Ivan Sagalaev.
4
- All rights reserved.
5
-
6
- Redistribution and use in source and binary forms, with or without
7
- modification, are permitted provided that the following conditions are met:
8
-
9
- * Redistributions of source code must retain the above copyright notice, this
10
- list of conditions and the following disclaimer.
11
-
12
- * Redistributions in binary form must reproduce the above copyright notice,
13
- this list of conditions and the following disclaimer in the documentation
14
- and/or other materials provided with the distribution.
15
-
16
- * Neither the name of the copyright holder nor the names of its
17
- contributors may be used to endorse or promote products derived from
18
- this software without specific prior written permission.
19
-
20
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2018 b2a3e8
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.