@paroicms/playground_demo2 0.69.0 → 0.69.1
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.
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> @paroicms/playground_demo2@0.69.
|
|
2
|
+
> @paroicms/playground_demo2@0.69.1 build
|
|
3
3
|
> npm run scss
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @paroicms/playground_demo2@0.69.
|
|
6
|
+
> @paroicms/playground_demo2@0.69.1 scss
|
|
7
7
|
> npm run _scss -- --no-source-map --style=compressed
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
> @paroicms/playground_demo2@0.69.
|
|
10
|
+
> @paroicms/playground_demo2@0.69.1 _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
package/package.json
CHANGED
package/theme/.theme-check.yml
CHANGED
|
@@ -60,10 +60,12 @@
|
|
|
60
60
|
{% render 'partials/post.public.liquid', doc: post %}
|
|
61
61
|
{% endfor %}
|
|
62
62
|
</div>
|
|
63
|
-
{%
|
|
64
|
-
|
|
65
|
-
{{
|
|
66
|
-
|
|
63
|
+
{% if site.home.posts %}
|
|
64
|
+
{% assign postsPage = site.home.posts.doc %}
|
|
65
|
+
<a href="{{ postsPage.url }}">
|
|
66
|
+
{{ 'All posts' | t }}
|
|
67
|
+
</a>
|
|
68
|
+
{% endif %}
|
|
67
69
|
</section>
|
|
68
70
|
|
|
69
71
|
{% getDocs pages, parentId: site.home.pages.id %}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
{% getDoc contactPage
|
|
2
|
-
, id: site.home.contactPage.id %}
|
|
3
1
|
<footer class="SiteFooter Container">
|
|
4
2
|
<span>{{ site.field.title }}</span>
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
{% if site.home.contactPage %}
|
|
4
|
+
{% assign contactPage = site.home.contactPage.doc %}
|
|
5
|
+
<a class="BoringBorders" href="{{ contactPage.url }}">{{ contactPage.title }}</a>
|
|
6
|
+
{% endif %}
|
|
7
|
+
</footer>
|
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
{% getDoc postsPage, id: site.home.posts.id %}
|
|
2
|
-
{% getDoc exhibitionPage, id: site.home.exhibition.id %}
|
|
3
|
-
{% getDoc aboutPage, id: site.home.aboutPage.id %}
|
|
4
|
-
{% getDoc contactPage, id: site.home.contactPage.id %}
|
|
5
|
-
{% getDoc searchPage, id: site.home.searchPage.id %}
|
|
6
|
-
|
|
7
1
|
<header class="HeaderBar Container">
|
|
8
2
|
<div data-mobile-menu-part="logoTitle" class="HeaderBar-logoTitle">
|
|
9
3
|
<a
|
|
@@ -36,37 +30,52 @@
|
|
|
36
30
|
<li>
|
|
37
31
|
<a class="BoringBorders" data-menu-item-id="{{ site.home.id }}" href="{{ site.home.url }}">{{ 'Home' | t }}</a>
|
|
38
32
|
</li>
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
33
|
+
{% if site.home.posts %}
|
|
34
|
+
{% assign postsPage = site.home.posts.doc %}
|
|
35
|
+
<li>
|
|
36
|
+
<a class="BoringBorders" data-menu-item-id="{{ postsPage.id }}" href="{{ postsPage.url }}">
|
|
37
|
+
{{- postsPage.title -}}
|
|
38
|
+
</a>
|
|
39
|
+
</li>
|
|
40
|
+
{% endif %}
|
|
41
|
+
{% if site.home.exhibition %}
|
|
42
|
+
{% assign exhibitionPage = site.home.exhibition.doc %}
|
|
43
|
+
<li>
|
|
44
|
+
<a class="BoringBorders" data-menu-item-id="{{ exhibitionPage.id }}" href="{{ exhibitionPage.url }}">
|
|
45
|
+
{{- exhibitionPage.title -}}
|
|
46
|
+
</a>
|
|
47
|
+
</li>
|
|
48
|
+
{% endif %}
|
|
49
|
+
{% if site.home.aboutPage %}
|
|
50
|
+
{% assign aboutPage = site.home.aboutPage.doc %}
|
|
51
|
+
<li>
|
|
52
|
+
<a class="BoringBorders" data-menu-item-id="{{ aboutPage.id }}" href="{{ aboutPage.url }}">
|
|
53
|
+
{{- aboutPage.title -}}
|
|
54
|
+
</a>
|
|
55
|
+
</li>
|
|
56
|
+
{% endif %}
|
|
57
|
+
{% if site.home.contactPage %}
|
|
58
|
+
{% assign contactPage = site.home.contactPage.doc %}
|
|
59
|
+
<li>
|
|
60
|
+
<a class="BoringBorders" data-menu-item-id="{{ contactPage.id }}" href="{{ contactPage.url }}">
|
|
61
|
+
{{- contactPage.field.buttonLabel -}}
|
|
62
|
+
</a>
|
|
63
|
+
</li>
|
|
64
|
+
{% endif %}
|
|
59
65
|
</ul>
|
|
60
66
|
</nav>
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
67
|
+
{% if site.home.searchPage %}
|
|
68
|
+
{% assign searchPage = site.home.searchPage.doc %}
|
|
69
|
+
<div>
|
|
70
|
+
<div
|
|
71
|
+
class="HeaderBar-searchBtn"
|
|
72
|
+
data-effect="paSearchOpener"
|
|
73
|
+
data-icon-color=""
|
|
74
|
+
data-search-url="{{ searchPage.url }}"
|
|
75
|
+
></div>
|
|
76
|
+
<div data-mobile-menu="button"></div>
|
|
77
|
+
</div>
|
|
78
|
+
{% endif %}
|
|
70
79
|
</header>
|
|
71
80
|
<div
|
|
72
81
|
class="_paMobileMenu"
|