waibu-blu 1.2.3 → 1.2.5
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/bajo/intl/en-US.json +3 -0
- package/bajoTemplate/extend/bajoTemplate/layout/default.html +1 -4
- package/bajoTemplate/extend/main/partial/footer.html +42 -14
- package/bajoTemplate/extend/waibuMpa/partial/title.html +4 -0
- package/bajoTemplate/extend/waibuMpa/partial/~sub-title.html +1 -0
- package/package.json +1 -1
|
@@ -2,10 +2,7 @@
|
|
|
2
2
|
<c:main>
|
|
3
3
|
<!-- include main.partial:/header.html -->
|
|
4
4
|
<c:container>
|
|
5
|
-
|
|
6
|
-
<c:heading type="4" content="<%= page.title %>" margin="x-3" />
|
|
7
|
-
<c:div id="heading-end"></c:div>
|
|
8
|
-
</c:div>
|
|
5
|
+
<!-- include waibuMpa.partial:/title.html -->
|
|
9
6
|
<c:card shadow="sm" border="none">
|
|
10
7
|
<c:card-body>
|
|
11
8
|
<!-- body -->
|
|
@@ -1,14 +1,42 @@
|
|
|
1
|
-
<c:
|
|
2
|
-
<c:
|
|
3
|
-
<c:grid-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
<c:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
</c:
|
|
1
|
+
<c:div background="color:secondary-subtle" margin="top-5" padding="top-5 bottom-3">
|
|
2
|
+
<c:container>
|
|
3
|
+
<c:grid-row>
|
|
4
|
+
<c:grid-col col="6-sm 7-lg">
|
|
5
|
+
<c:grid-row>
|
|
6
|
+
<c:grid-col col="12-md 4-lg">
|
|
7
|
+
<!-- include main.partial:/footer/col-1.html -->
|
|
8
|
+
</c:grid-col>
|
|
9
|
+
<c:grid-col col="12-md 4-lg">
|
|
10
|
+
<!-- include main.partial:/footer/col-2.html -->
|
|
11
|
+
</c:grid-col>
|
|
12
|
+
<c:grid-col col="12-md 4-lg">
|
|
13
|
+
<!-- include main.partial:/footer/col-3.html -->
|
|
14
|
+
</c:grid-col>
|
|
15
|
+
</c:grid-row>
|
|
16
|
+
</c:grid-col>
|
|
17
|
+
<c:grid-col col="6-sm 5-lg">
|
|
18
|
+
<!-- include main.partial:/footer/col-4.html -->
|
|
19
|
+
</c:grid-col>
|
|
20
|
+
</c:grid-row>
|
|
21
|
+
</c:container>
|
|
22
|
+
</c:div>
|
|
23
|
+
<c:div background="color:secondary-subtle" padding="y-3">
|
|
24
|
+
<c:container>
|
|
25
|
+
<c:grid-row>
|
|
26
|
+
<c:grid-col col="6-md">
|
|
27
|
+
© 2025 <a href="/"><%= _meta.site.title %></a>. <c:span t:content="allRightsReserved" />
|
|
28
|
+
</c:grid-col>
|
|
29
|
+
<c:grid-col col="6-md" text="align:end-md">
|
|
30
|
+
<c:list type="inline">
|
|
31
|
+
<c:list-item href="sumba:/info/cookie-policy" t:content="cookie" />
|
|
32
|
+
<c:list-item href="sumba:/info/privacy" t:content="privacy" />
|
|
33
|
+
<c:list-item href="sumba:/info/terms-conditions" t:content="terms" />
|
|
34
|
+
<c:list-item content="|" />
|
|
35
|
+
<c:list-item href="/">
|
|
36
|
+
<c:img src="waibuMpa:/logo/main?type=full<%= _meta.darkMode ? '-light' : '' %>" height="20" />
|
|
37
|
+
</c:list-item>
|
|
38
|
+
</c:list>
|
|
39
|
+
</c:grid-col>
|
|
40
|
+
</c:grid-row>
|
|
41
|
+
</c:container>
|
|
42
|
+
</c:div>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<c:heading type="5" content="<%= _t(attr.subTitle) %>" margin="x-3" />
|