ultimate-jekyll-manager 0.0.37 → 0.0.38

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.
@@ -1,7 +1,19 @@
1
1
  ---
2
2
  ### ALL PAGES ###
3
- layout: themes/geeks/frontend/default
3
+ layout: main/global/default
4
4
 
5
5
  ### REGULAR PAGES ###
6
+
6
7
  ---
7
- {{ content }}
8
+ {%- include /themes/bootstrap/header.html -%}
9
+
10
+ <!-- ========== MAIN CONTENT ========== -->
11
+ <main>
12
+ {% if page.extension == '.md' %}
13
+ {{ content | liquify | markdownify }}
14
+ {%- else -%}
15
+ {{ content | liquify }}
16
+ {%- endif -%}
17
+ </main>
18
+
19
+ {%- include /themes/bootstrap/footer.html -%}
@@ -0,0 +1,47 @@
1
+ ---
2
+ ### ALL PAGES ###
3
+ layout: main/global/default
4
+
5
+ ### REGULAR PAGES ###
6
+ head:
7
+ pre-bundle-css: '
8
+ {%- include /themes/geeks/head-pre-bundle.html -%}
9
+ '
10
+
11
+ foot:
12
+ pre-bundle-script: '
13
+ {%- include /themes/geeks/foot-pre-bundle.html -%}
14
+ '
15
+
16
+ settings:
17
+ include-app-foot: false
18
+ include-app-head: false
19
+ include-app-footer: false
20
+ include-app-header: false
21
+ include-script-bundle: true
22
+ include-script-core: true
23
+ include-css-bundle: false
24
+ manager-configuration: "
25
+ {
26
+ libraries: {
27
+ cookieconsent: {
28
+ enabled: true
29
+ },
30
+ chatsy: {
31
+ enabled: true
32
+ },
33
+ sentry: {
34
+ enabled: true
35
+ }
36
+ },
37
+ }
38
+ "
39
+ ---
40
+ {%- include /themes/geeks/header.html -%}
41
+
42
+ <!-- ========== MAIN CONTENT ========== -->
43
+ <main class="bg-white">
44
+ {{ content | liquify | markdownify }}
45
+ </main>
46
+
47
+ {%- include /themes/geeks/footer.html -%}
@@ -41,7 +41,11 @@ settings:
41
41
 
42
42
  <!-- ========== MAIN CONTENT ========== -->
43
43
  <main class="bg-white">
44
- {{ content | liquify | markdownify }}
44
+ {% if page.extension == '.md' %}
45
+ {{ content | liquify | markdownify }}
46
+ {%- else -%}
47
+ {{ content | liquify }}
48
+ {%- endif -%}
45
49
  </main>
46
50
 
47
51
  {%- include /themes/geeks/footer.html -%}
package/dist/gulp/main.js CHANGED
@@ -58,6 +58,6 @@ exports.default = series(
58
58
  // exports.clean,
59
59
  exports.serve,
60
60
  exports.build,
61
- exports.developmentRebuild,
61
+ // exports.developmentRebuild,
62
62
  // exports.watcher,
63
63
  );
@@ -79,6 +79,9 @@ async function jekyll(complete) {
79
79
  // Run buildpost hook
80
80
  await hook('build:post', index);
81
81
 
82
+ // QUIT
83
+ // QUIT
84
+
82
85
  // Log
83
86
  logger.log('Finished!');
84
87
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "0.0.37",
3
+ "version": "0.0.38",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {