waibu-blu 2.5.0 → 2.7.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.
- package/extend/bajoTemplate/_common/main/layout/default.html +10 -0
- package/extend/bajoTemplate/_common/waibuMpa/partial/403.html +11 -0
- package/extend/bajoTemplate/_common/waibuMpa/partial/404.html +11 -0
- package/extend/bajoTemplate/_common/waibuMpa/partial/500.html +11 -0
- package/extend/bajoTemplate/_common/waibuMpa/template/403.html +4 -0
- package/extend/bajoTemplate/_common/waibuMpa/template/404.html +1 -1
- package/extend/bajoTemplate/_common/waibuMpa/template/500.html +1 -1
- package/package.json +1 -1
- package/wiki/CHANGES.md +11 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<c:card shadow="sm">
|
|
2
|
+
<c:card-body>
|
|
3
|
+
<c:div padding="all-5" text="align:center">
|
|
4
|
+
<c:heading type="1-display" text="color:warning">403</c:heading>
|
|
5
|
+
<c:heading type="6-display" text="color:warning"><%= _t('accessDenied') %></c:heading>
|
|
6
|
+
<c:div padding="top-5">
|
|
7
|
+
<%= _t('accessDeniedDesc') %>
|
|
8
|
+
</c:div>
|
|
9
|
+
</c:div>
|
|
10
|
+
</c:card-body>
|
|
11
|
+
</c:card>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<c:card shadow="sm">
|
|
2
|
+
<c:card-body>
|
|
3
|
+
<c:div padding="all-5" text="align:center">
|
|
4
|
+
<c:heading type="1-display">404</c:heading>
|
|
5
|
+
<c:heading type="6-display"><%= _t('pageNotFound') %></c:heading>
|
|
6
|
+
<c:div padding="top-5">
|
|
7
|
+
<%= _t('pageNotFoundDesc') %>
|
|
8
|
+
</c:div>
|
|
9
|
+
</c:div>
|
|
10
|
+
</c:card-body>
|
|
11
|
+
</c:card>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<c:card shadow="sm">
|
|
2
|
+
<c:card-body>
|
|
3
|
+
<c:div padding="all-5" text="align:center">
|
|
4
|
+
<c:heading type="1-display" text="color:danger">500</c:heading>
|
|
5
|
+
<c:heading type="6-display" text="color:danger"><%= _t('internalServerError') %></c:heading>
|
|
6
|
+
<c:div padding="top-5">
|
|
7
|
+
<%= _t('internalServerErrorDesc') %>
|
|
8
|
+
</c:div>
|
|
9
|
+
</c:div>
|
|
10
|
+
</c:card-body>
|
|
11
|
+
</c:card>
|
package/package.json
CHANGED
package/wiki/CHANGES.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 2026-06-20
|
|
4
|
+
|
|
5
|
+
- [2.7.0] Add ```403.html```
|
|
6
|
+
- [2.7.0] Rename ```400.html``` to ```404.html```
|
|
7
|
+
|
|
8
|
+
## 2026-06-05
|
|
9
|
+
|
|
10
|
+
- [2.6.0] Add ```_common/main/layout/default.html```
|
|
11
|
+
- [2.6.0] Add ```_common/waibuMpa/partial/500.html```
|
|
12
|
+
- [2.6.0] Add ```_common/waibuMpa/partial/400.html```
|
|
13
|
+
|
|
3
14
|
## 2026-05-22
|
|
4
15
|
|
|
5
16
|
- [2.5.0] Add button for user with ```isXSiteAdmin```
|