@paroicms/playground_demo1 0.65.13 → 0.66.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/playground_demo1@0.65.13 build
2
+ > @paroicms/playground_demo1@0.66.0 build
3
3
  > npm run scss
4
4
 
5
5
 
6
- > @paroicms/playground_demo1@0.65.13 scss
6
+ > @paroicms/playground_demo1@0.66.0 scss
7
7
  > npm run _scss -- --no-source-map --style=compressed
8
8
 
9
9
 
10
- > @paroicms/playground_demo1@0.65.13 _scss
10
+ > @paroicms/playground_demo1@0.66.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,24 @@
1
1
  # @paroicms/playground_seoul
2
2
 
3
+ ## 0.66.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 449a35f: Aligned the site payload. See the ticket for a migration script of your Liquid templates.
8
+
9
+ ## 0.65.14
10
+
11
+ ### Patch Changes
12
+
13
+ - @paroicms/contact-form-plugin@0.33.11
14
+ - @paroicms/content-loading-plugin@0.27.12
15
+ - @paroicms/internal-link-plugin@0.23.9
16
+ - @paroicms/platform-video-plugin@0.37.10
17
+ - @paroicms/public-menu-plugin@0.19.12
18
+ - @paroicms/tiptap-editor-plugin@1.1.2
19
+ - @paroicms/zoom-plugin@0.2.9
20
+ - @paroicms/script-lib@0.3.11
21
+
3
22
  ## 0.65.13
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/playground_demo1",
3
- "version": "0.65.13",
3
+ "version": "0.66.0",
4
4
  "description": "Boilerplate website for ParoiCMS",
5
5
  "author": "Paroi Team",
6
6
  "license": "MIT",
@@ -24,14 +24,14 @@
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/contact-form-plugin": "0.33.10",
28
- "@paroicms/content-loading-plugin": "0.27.11",
29
- "@paroicms/internal-link-plugin": "0.23.8",
30
- "@paroicms/public-menu-plugin": "0.19.11",
31
- "@paroicms/tiptap-editor-plugin": "1.1.1",
32
- "@paroicms/script-lib": "0.3.10",
33
- "@paroicms/platform-video-plugin": "0.37.9",
34
- "@paroicms/zoom-plugin": "0.2.8"
27
+ "@paroicms/contact-form-plugin": "0.33.11",
28
+ "@paroicms/content-loading-plugin": "0.27.12",
29
+ "@paroicms/internal-link-plugin": "0.23.9",
30
+ "@paroicms/public-menu-plugin": "0.19.12",
31
+ "@paroicms/tiptap-editor-plugin": "1.1.2",
32
+ "@paroicms/script-lib": "0.3.11",
33
+ "@paroicms/platform-video-plugin": "0.37.10",
34
+ "@paroicms/zoom-plugin": "0.2.9"
35
35
  },
36
36
  "devDependencies": {
37
37
  "concurrently": "~9.2.1",
@@ -1,7 +1,7 @@
1
1
  {% layout 'layouts/main-layout.liquid' %}
2
2
  {% block %}
3
- {% set posts = docs(site.home.posts.children, limit: 4) %}
4
- {% set pages = docs(site.home.pages.children) %}
3
+ {% set posts = docs(site.home.routing.posts.children, limit: 4) %}
4
+ {% set pages = docs(site.home.routing.pages.children) %}
5
5
 
6
6
  <main>
7
7
  {% render 'partials/breadcrumb', doc: doc %}
@@ -10,7 +10,7 @@
10
10
  <section class="TileList Container pad">
11
11
  <h2>
12
12
  Latest posts
13
- {% set postsPage = doc(site.home.posts) %}
13
+ {% set postsPage = doc(site.home.routing.posts) %}
14
14
  {% if postsPage %}
15
15
  <a class="Mini" href="{{ postsPage.url }}">see all</a>
16
16
  {% endif %}
@@ -1,7 +1,7 @@
1
1
  <div class="_revertedColors PageFooterArea">
2
2
  <footer class="PageFooter Container pad">
3
3
  <div class="Text">{{ site.field.footerMention | raw }}</div>
4
- {% set contactPage = doc(site.home.contactPage) %}
4
+ {% set contactPage = doc(site.home.routing.contactPage) %}
5
5
  {% if contactPage %}
6
6
  <a class="Btn" href="{{ contactPage.url }}">{{ contactPage.title }}</a>
7
7
  {% endif %}
@@ -37,8 +37,8 @@
37
37
  >
38
38
  </li>
39
39
 
40
- {% if site.home.pages %}
41
- {% set pages = docs(site.home.pages.children) %}
40
+ {% if site.home.routing.pages %}
41
+ {% set pages = docs(site.home.routing.pages.children) %}
42
42
  <li>
43
43
  <span class="Btn disabled">Pages</span>
44
44
  <ul class="Menu sub">
@@ -57,7 +57,7 @@
57
57
  </li>
58
58
  {% endif %}
59
59
 
60
- {% set postsPage = doc(site.home.posts) %}
60
+ {% set postsPage = doc(site.home.routing.posts) %}
61
61
  {% if postsPage %}
62
62
  <li>
63
63
  <a
@@ -70,7 +70,7 @@
70
70
  </li>
71
71
  {% endif %}
72
72
 
73
- {% set aboutPage = doc(site.home.aboutPage) %}
73
+ {% set aboutPage = doc(site.home.routing.aboutPage) %}
74
74
  {% if aboutPage %}
75
75
  <li>
76
76
  <a
@@ -83,7 +83,7 @@
83
83
  </li>
84
84
  {% endif %}
85
85
 
86
- {% set contactPage = doc(site.home.contactPage) %}
86
+ {% set contactPage = doc(site.home.routing.contactPage) %}
87
87
  {% if contactPage %}
88
88
  <li>
89
89
  <a
@@ -99,7 +99,7 @@
99
99
  </nav>
100
100
 
101
101
  <div>
102
- {% set searchPage = doc(site.home.searchPage) %}
102
+ {% set searchPage = doc(site.home.routing.searchPage) %}
103
103
  {% if searchPage %}
104
104
  {% out searchOpener(url: searchPage.url) %}
105
105
  {% endif %}
@@ -2,12 +2,12 @@
2
2
  {% block %}
3
3
  {% render 'partials/breadcrumb', doc: doc %}
4
4
 
5
- {% set tags = docs(site.home.posts.tags.children) %}
5
+ {% set tags = docs(site.home.routing.posts.tags.children) %}
6
6
  {% if tags %}
7
7
  <div class="Bg2 Pt Pb">
8
8
  <div class="Container pad">
9
9
  <hr class="Hr">
10
- <div class="Annotation">set tags = docs(site.home.posts.tags.children)</div>
10
+ <div class="Annotation">set tags = docs(site.home.routing.posts.tags.children)</div>
11
11
 
12
12
  Tags:
13
13
  {% for tag in tags %}
@@ -12,11 +12,11 @@
12
12
  </div>
13
13
  {% endif %}
14
14
 
15
- {% set posts = paginatedDocs(site.home.posts.children, by: 4, term: doc, labeledWith: "tags") %}
15
+ {% set posts = paginatedDocs(site.home.routing.posts.children, by: 4, term: doc, labeledWith: "tags") %}
16
16
  <div class="Container pad Mt Mb">
17
17
  <div class="Grid12">
18
18
  <div class="Annotation Column4 Span6">
19
- set posts = paginatedDocs(site.home.posts.children, by: 4, term: doc, labeledWith: "tags")
19
+ set posts = paginatedDocs(site.home.routing.posts.children, by: 4, term: doc, labeledWith: "tags")
20
20
  </div>
21
21
  </div>
22
22
  {% out infiniteLoading(class: "Grid12", paginatedDocs: posts, template: "partials/post-tile.public") %}