@paroicms/playground_demo1 0.60.0 → 0.61.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.60.0 build
2
+ > @paroicms/playground_demo1@0.61.0 build
3
3
  > npm run scss
4
4
 
5
5
 
6
- > @paroicms/playground_demo1@0.60.0 scss
6
+ > @paroicms/playground_demo1@0.61.0 scss
7
7
  > npm run _scss -- --no-source-map --style=compressed
8
8
 
9
9
 
10
- > @paroicms/playground_demo1@0.60.0 _scss
10
+ > @paroicms/playground_demo1@0.61.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,27 @@
1
1
  # @paroicms/playground_seoul
2
2
 
3
+ ## 0.61.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 784db24: Added routing clusters feature
8
+
9
+ ### Patch Changes
10
+
11
+ - @paroicms/script-lib@0.2.1
12
+ - @paroicms/contact-form-plugin@0.32.1
13
+ - @paroicms/content-loading-plugin@0.26.1
14
+ - @paroicms/internal-link-plugin@0.21.1
15
+ - @paroicms/public-menu-plugin@0.18.1
16
+ - @paroicms/quill-editor-plugin@1.41.1
17
+ - @paroicms/video-plugin@0.35.1
18
+
19
+ ## 0.60.1
20
+
21
+ ### Patch Changes
22
+
23
+ - d752bdb: Added migration for buttonLabel field
24
+
3
25
  ## 0.60.0
4
26
 
5
27
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/playground_demo1",
3
- "version": "0.60.0",
3
+ "version": "0.61.0",
4
4
  "description": "Boilerplate website for ParoiCMS",
5
5
  "author": "Paroi Team",
6
6
  "license": "MIT",
@@ -24,12 +24,13 @@
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.32.0",
28
- "@paroicms/content-loading-plugin": "0.26.0",
29
- "@paroicms/internal-link-plugin": "0.21.0",
30
- "@paroicms/public-menu-plugin": "0.18.0",
31
- "@paroicms/quill-editor-plugin": "1.41.0",
32
- "@paroicms/video-plugin": "0.35.0"
27
+ "@paroicms/contact-form-plugin": "0.32.1",
28
+ "@paroicms/content-loading-plugin": "0.26.1",
29
+ "@paroicms/internal-link-plugin": "0.21.1",
30
+ "@paroicms/public-menu-plugin": "0.18.1",
31
+ "@paroicms/quill-editor-plugin": "1.41.1",
32
+ "@paroicms/script-lib": "0.2.1",
33
+ "@paroicms/video-plugin": "0.35.1"
33
34
  },
34
35
  "devDependencies": {
35
36
  "concurrently": "~9.1.2",
package/site-schema.json CHANGED
@@ -19,6 +19,9 @@
19
19
  "kind": "document",
20
20
  "documentKind": "routing",
21
21
  "withFeaturedImage": true,
22
+ "cluster": {
23
+ "autoCreate": true
24
+ },
22
25
  "routingChildren": ["pages", "posts", "aboutPage", "contactPage", "searchPage"],
23
26
  "lists": [
24
27
  {
@@ -2,11 +2,16 @@
2
2
  <div class="Container pad Breadcrumb">
3
3
  <div class="Annotation">doc.breadcrumb</div>
4
4
  <div>
5
- {% for item in doc.breadcrumb %}
6
- <a href="{{ item.url }}">{{ item.title }}</a>
7
-
5
+ {% for crumb in doc.breadcrumb %}
6
+ {% if crumb.url %}
7
+ <a class="TextLink" href="{{ crumb.url }}">{{ crumb.title }}</a>
8
+ {% else %}
9
+ <span>{{ crumb.title }}</span>
10
+ {% endif %}
11
+ {% unless forloop.last %}
12
+ /
13
+ {% endunless %}
8
14
  {% endfor %}
9
- {{ doc.title }}
10
15
  </div>
11
16
  </div>
12
- </section>
17
+ </section>