@paroicms/generator-site 0.9.2 → 0.10.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.
@@ -1,12 +1,12 @@
1
1
 
2
- > @paroicms/generator-site@0.9.2 build
2
+ > @paroicms/generator-site@0.10.0 build
3
3
  > npm run scss
4
4
 
5
5
 
6
- > @paroicms/generator-site@0.9.2 scss
6
+ > @paroicms/generator-site@0.10.0 scss
7
7
  > npm run _scss -- --no-source-map --style=compressed
8
8
 
9
9
 
10
- > @paroicms/generator-site@0.9.2 _scss
10
+ > @paroicms/generator-site@0.10.0 _scss
11
11
  > sass theme/assets/scss/index.scss theme/assets/css/index.css --no-source-map --style=compressed
12
12
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @paroicms/generator-site
2
2
 
3
+ ## 0.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - c9eb26a: Added 'set' and 'out' liquid tags
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [c9eb26a]
12
+ - @paroicms/site-generator-plugin@0.25.0
13
+ - @paroicms/quill-editor-plugin@1.42.0
14
+ - @paroicms/script-lib@0.3.0
15
+
16
+ ## 0.9.3
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [9540bee]
21
+ - @paroicms/site-generator-plugin@0.24.3
22
+
3
23
  ## 0.9.2
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/generator-site",
3
- "version": "0.9.2",
3
+ "version": "0.10.0",
4
4
  "description": "ParoiCMS generator website",
5
5
  "author": "Paroi Team",
6
6
  "license": "MIT",
@@ -24,9 +24,9 @@
24
24
  "_pino-pretty": "pino-pretty -U false -x 'stats:25' -X 'stats:grey' -t 'yyyy-mm-dd HH:MM:ss.l' -i 'hostname,pid,fqdn'"
25
25
  },
26
26
  "dependencies": {
27
- "@paroicms/script-lib": "0.2.2",
28
- "@paroicms/site-generator-plugin": "0.24.2",
29
- "@paroicms/quill-editor-plugin": "1.41.2"
27
+ "@paroicms/script-lib": "0.3.0",
28
+ "@paroicms/site-generator-plugin": "0.25.0",
29
+ "@paroicms/quill-editor-plugin": "1.42.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "concurrently": "~9.1.2",
@@ -1,10 +1,10 @@
1
- {% layout "layouts/main-layout.liquid" doc: doc site: site %}
1
+ {% layout 'layouts/main-layout.liquid' %}
2
2
  {% block %}
3
- <main class="Container text pad Text">
4
- <h1>404</h1>
5
- <p>
6
- This page doesn't exist. Please
7
- <a href='/'>return to home page</a>.
8
- </p>
9
- </main>
10
- {% endblock %}
3
+ <main class="Container text pad Text">
4
+ <h1>404</h1>
5
+ <p>
6
+ This page doesn't exist. Please
7
+ <a href="/">return to home page</a>.
8
+ </p>
9
+ </main>
10
+ {% endblock %}
@@ -1,4 +1,4 @@
1
- {% layout "layouts/main-layout.liquid" doc: doc, site: site %}
1
+ {% layout 'layouts/main-layout.liquid' %}
2
2
  {% block %}
3
- {% siteGeneratorApp %}
3
+ {% out siteGeneratorApp %}
4
4
  {% endblock %}
@@ -1,10 +1,10 @@
1
- {% layout "layouts/main-layout.liquid" doc: doc site: site %}
1
+ {% layout 'layouts/main-layout.liquid' %}
2
2
  {% block %}
3
- <div class="Container pad text Mt Mb">
4
- <p>
5
- {% for translation in doc.translations %}
6
- <a href="{{ translation.url }}">{{ translation.languageLabel }}</a>
7
- {% endfor %}
8
- </p>
9
- </div>
10
- {% endblock %}
3
+ <div class="Container pad text Mt Mb">
4
+ <p>
5
+ {% for translation in doc.translations %}
6
+ <a href="{{ translation.url }}">{{ translation.languageLabel }}</a>
7
+ {% endfor %}
8
+ </p>
9
+ </div>
10
+ {% endblock %}
@@ -13,6 +13,6 @@
13
13
  <body>
14
14
  {% block -%}
15
15
  {%- endblock %}
16
- {% render 'partials/footer', doc: doc, site: site %}
16
+ {% render 'partials/footer', doc: doc %}
17
17
  </body>
18
18
  </html>