@paroicms/playground_demo2 0.74.1 → 0.75.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_demo2@0.74.1 build
2
+ > @paroicms/playground_demo2@0.75.0 build
3
3
  > npm run scss
4
4
 
5
5
 
6
- > @paroicms/playground_demo2@0.74.1 scss
6
+ > @paroicms/playground_demo2@0.75.0 scss
7
7
  > npm run _scss -- --no-source-map --style=compressed
8
8
 
9
9
 
10
- > @paroicms/playground_demo2@0.74.1 _scss
10
+ > @paroicms/playground_demo2@0.75.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,11 @@
1
1
  # @paroicms/playground_seoul
2
2
 
3
+ ## 0.75.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 449a35f: Aligned the site payload. See the ticket for a migration script of your Liquid templates.
8
+
3
9
  ## 0.74.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/playground_demo2",
3
- "version": "0.74.1",
3
+ "version": "0.75.0",
4
4
  "description": "Demonstration website for ParoiCMS",
5
5
  "author": "Paroi Team",
6
6
  "license": "MIT",
@@ -37,7 +37,7 @@
37
37
  </picture>
38
38
  {% endif %}
39
39
 
40
- {% set posts = docs(site.home.posts.children, limit: 4) %}
40
+ {% set posts = docs(site.home.routing.posts.children, limit: 4) %}
41
41
  <section class="TileList Container">
42
42
  <h2>
43
43
  {{ 'Latest posts' | t }}
@@ -47,7 +47,7 @@
47
47
  {% render 'partials/post.public.liquid', doc: post %}
48
48
  {% endfor %}
49
49
  </div>
50
- {% set postsPage = doc(site.home.posts) %}
50
+ {% set postsPage = doc(site.home.routing.posts) %}
51
51
  {% if postsPage %}
52
52
  <a href="{{ postsPage.url }}">
53
53
  {{ 'All posts' | t }}
@@ -55,7 +55,7 @@
55
55
  {% endif %}
56
56
  </section>
57
57
 
58
- {% set pages = docs(site.home.pages.children) %}
58
+ {% set pages = docs(site.home.routing.pages.children) %}
59
59
  <section class="TileList Container">
60
60
  <h2>{{ 'Pages' | t }}</h2>
61
61
  <div class="Grid12">
@@ -1,6 +1,6 @@
1
1
  <footer class="SiteFooter Container">
2
2
  <span>{{ site.field.title }}</span>
3
- {% set contactPage = doc(site.home.contactPage) %}
3
+ {% set contactPage = doc(site.home.routing.contactPage) %}
4
4
  {% if contactPage %}
5
5
  <a class="BoringBorders" href="{{ contactPage.url }}">{{ contactPage.title }}</a>
6
6
  {% endif %}
@@ -27,7 +27,7 @@
27
27
  <li>
28
28
  <a class="BoringBorders" data-menu-item-id="{{ site.home.id }}" href="{{ site.home.url }}">{{ 'Home' | t }}</a>
29
29
  </li>
30
- {% set postsPage = doc(site.home.posts) %}
30
+ {% set postsPage = doc(site.home.routing.posts) %}
31
31
  {% if postsPage %}
32
32
  <li>
33
33
  <a class="BoringBorders" data-menu-item-id="{{ postsPage.id }}" href="{{ postsPage.url }}">
@@ -35,7 +35,7 @@
35
35
  </a>
36
36
  </li>
37
37
  {% endif %}
38
- {% set exhibitionPage = doc(site.home.exhibition) %}
38
+ {% set exhibitionPage = doc(site.home.routing.exhibition) %}
39
39
  {% if exhibitionPage %}
40
40
  <li>
41
41
  <a class="BoringBorders" data-menu-item-id="{{ exhibitionPage.id }}" href="{{ exhibitionPage.url }}">
@@ -43,7 +43,7 @@
43
43
  </a>
44
44
  </li>
45
45
  {% endif %}
46
- {% set aboutPage = doc(site.home.aboutPage) %}
46
+ {% set aboutPage = doc(site.home.routing.aboutPage) %}
47
47
  {% if aboutPage %}
48
48
  <li>
49
49
  <a class="BoringBorders" data-menu-item-id="{{ aboutPage.id }}" href="{{ aboutPage.url }}">
@@ -51,7 +51,7 @@
51
51
  </a>
52
52
  </li>
53
53
  {% endif %}
54
- {% set contactPage = doc(site.home.contactPage) %}
54
+ {% set contactPage = doc(site.home.routing.contactPage) %}
55
55
  {% if contactPage %}
56
56
  <li>
57
57
  <a class="BoringBorders" data-menu-item-id="{{ contactPage.id }}" href="{{ contactPage.url }}">
@@ -62,7 +62,7 @@
62
62
  </ul>
63
63
  </nav>
64
64
  <div>
65
- {% set searchPage = doc(site.home.searchPage) %}
65
+ {% set searchPage = doc(site.home.routing.searchPage) %}
66
66
  {% if searchPage %}
67
67
  {% out searchOpener(url: searchPage.url, class: "HeaderBar-searchBtn") %}
68
68
  {% endif %}
@@ -4,7 +4,7 @@
4
4
  <h1>{{ doc.title }}</h1>
5
5
  <div class="Container Text selfContained justified">{{ doc.field.htmlContent | raw }}</div>
6
6
 
7
- {% set posts = paginatedDocs(site.home.posts.children, by: 4, term: doc, labeledWith: "tags") %}
7
+ {% set posts = paginatedDocs(site.home.routing.posts.children, by: 4, term: doc, labeledWith: "tags") %}
8
8
  {% out infiniteLoading(class: "Grid12", paginatedDocs: posts, template: "partials/post.public") %}
9
9
  </main>
10
10
  {% endblock %}