jekyll-any-theme 0.1.1 → 0.1.2

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
  SHA1:
3
- metadata.gz: 8dd72a75d7baf8e67c2c1e333e267e40b356e8a0
4
- data.tar.gz: 7285ab05952b1e9b90314b38cf7bd4ce33bdd95b
3
+ metadata.gz: 42893935f5d379fe42b400471f678ea33b078856
4
+ data.tar.gz: a11db5baf6eab1d7f5620fa04fc96fd6df8e7564
5
5
  SHA512:
6
- metadata.gz: 883b1c6d71e13f01961da6e1cf97713d7dc7d4a533b39bc9f7956ee7ebd46b2564245e58d8e50bcf6a16382659d9e7ff7db4003c85de409f9270b5c1be78764f
7
- data.tar.gz: 321b59ea21fc73e9e96d317e906c444d6593bc92bdbe38906cee71cedfc47e0c9998d0732ac107d6b2d2fbd5e363d6289dae93b4a5d0ac44717673748979764c
6
+ metadata.gz: 500e4526b09988826e7d3fa4294b2afcdc5c2bbc3a57c1f5297af41422f0d1f2cac421478598f0e822f403e12a1a9e6c8fc255b671d7a78a5b73188db622ae51
7
+ data.tar.gz: 3a41725e674a90e031099848f216c1175930be1aaf81054b98395cda62cd4646f01e7e037847f8275cc3e8a19d0c1cf91d5ad2b8d2d8c4b8e64b9fba9145f5fa
data/README.md CHANGED
@@ -49,4 +49,3 @@ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-a
49
49
  ## License
50
50
 
51
51
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
-
@@ -0,0 +1,27 @@
1
+ ---
2
+ scripts:
3
+ -
4
+ name: jQuery
5
+ url: "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
6
+ -
7
+ name: Popper.js
8
+ url: "https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
9
+ -
10
+ name: Bootstrap
11
+ url: "https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.min.js"
12
+ -
13
+ name: Lz-Sting
14
+ url: "https://cdnjs.cloudflare.com/ajax/libs/lz-string/1.4.4/lz-string.js"
15
+ -
16
+ name: yaml.js
17
+ url: "https://cdnjs.cloudflare.com/ajax/libs/yamljs/0.3.0/yaml.min.js"
18
+ -
19
+ name: Datepicker
20
+ url: "https://cdnjs.cloudflare.com/ajax/libs/datepicker/0.6.4/datepicker.js"
21
+ -
22
+ name: Clipboard.js
23
+ url: "https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js"
24
+ ---
25
+ <script type="text/javascript">
26
+ // ok
27
+ </script>
@@ -15,7 +15,8 @@
15
15
  integrity="sha256-zozDkxLZ4hXQxKEFI8DTVkwNRd0J2KW0LxrN+/2RJVQ="
16
16
  crossorigin="anonymous" />
17
17
 
18
- {% if font_face %}<link rel="stylesheet" href="{{ "/assets/" | append: font_face | absolute_url }}">{% endif %}
18
+ {% if page.google_webfont %}<link href="https://fonts.googleapis.com/css?family={{ page.google_webfont }}" rel="stylesheet">{% endif %}
19
+ {% if page.font_face %}<link rel="stylesheet" href="{{ '/assets/fonts/' | append: page.font_face | absolute_url }}">{% endif %}
19
20
  <link rel="stylesheet" href="{{ "/assets/css/" | append: theme | append: ".css" | absolute_url }}" id="main-css">
20
21
 
21
22
  <!-- Javascripts CDN -->
@@ -25,6 +25,7 @@ right:
25
25
  - **Call** `_includes/components/navbar_link.html` to render singular links
26
26
  {% endcapture %}
27
27
  {% include api/save.html %}
28
+ {%- assign default_nav = site.html_pages -%}
28
29
  {%- assign navigation = include.nav | default: site.navbar -%}
29
30
  <!-- Navbar -->
30
31
  <nav class="navbar navbar-expand-md">
@@ -31,7 +31,8 @@ $code-font-size: 80%
31
31
 
32
32
  // Font family
33
33
  @import url('https://fonts.googleapis.com/css?family=Rubik:300,400,400i,500,700')
34
- $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif
34
+ // $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif
35
+ $font-family-sans-serif: "Scala Sans SC", sans-serif
35
36
  // $font-family-sans-serif: Verdana, Geneva, sans-serif
36
37
  $font-family-serif: Georgia, Times, "Times New Roman", serif
37
38
  $font-family-headings-header: 'Rubik', sans-serif
@@ -1,10 +1,10 @@
1
1
  ---
2
2
  ---
3
3
 
4
- {% include_relative any_theme/storage.coffee %}
5
- {% include_relative any_theme/login.coffee %}
6
- {% include_relative any_theme/themes.coffee %}
7
- {% include_relative any_theme/libros.coffee %}
4
+ {% include js/storage.coffee %}
5
+ {% include js/login.coffee %}
6
+ {% include js/themes.coffee %}
7
+ {% include js/libros.coffee %}
8
8
 
9
9
  # Collapsible
10
10
  # Move #markdown-toc inside #toc-collapseOne .card-body
@@ -19,3 +19,9 @@ Initially all amanuensis
19
19
  ```liquid
20
20
  {% raw %}{% include tempus/next.html calendar="Monnezza" days="6" past=false %}{% endraw %}
21
21
  ```
22
+
23
+ {% for p in site.html_pages %}
24
+ 1. [{{ p.title }}]({{ p.url | absolute_url }}){% endfor %}
25
+ {% for c in site.collections %}{%- for cp in c.docs -%}
26
+ 1. [{{ cp.title }}]({{ cp.url | absolute_url }}){% endfor %}
27
+ {%- endfor -%}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-any-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Petrosh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-15 00:00:00.000000000 Z
11
+ date: 2018-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '10.0'
55
- description: Jekyll any theme Customizable Bootstrap 4
55
+ description: Highly adaptable, generic theme focused in yaml schema creation
56
56
  email:
57
57
  - petrosh@users.noreply.github.com
58
58
  executables: []
@@ -76,6 +76,11 @@ files:
76
76
  - _includes/components/toc.html
77
77
  - _includes/filters/link_to_file.html
78
78
  - _includes/filters/unslug.html
79
+ - _includes/js/cdn.html
80
+ - _includes/js/libros.coffee
81
+ - _includes/js/login.coffee
82
+ - _includes/js/storage.coffee
83
+ - _includes/js/themes.coffee
79
84
  - _includes/page/end.html
80
85
  - _includes/page/footer.html
81
86
  - _includes/page/head.html
@@ -221,10 +226,6 @@ files:
221
226
  - assets/fonts/scala/scalasans-webfont.woff
222
227
  - assets/images/dnd-bg.jpg
223
228
  - assets/js/any-theme.coffee
224
- - assets/js/any_theme/libros.coffee
225
- - assets/js/any_theme/login.coffee
226
- - assets/js/any_theme/storage.coffee
227
- - assets/js/any_theme/themes.coffee
228
229
  - assets/pages/about.md
229
230
  - assets/pages/customize/css.md
230
231
  - assets/pages/customize/themes.md