@abtnode/router-templates 1.16.18-beta-7aa6be5a → 1.16.18-beta-bb4ebacc
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/lib/blocklet-403.js
CHANGED
|
@@ -8,7 +8,9 @@ module.exports = (blocklet, nodeInfo) => {
|
|
|
8
8
|
appName: blocklet?.meta?.title,
|
|
9
9
|
pageTitle: `Error - ${blocklet?.meta?.title}`,
|
|
10
10
|
content: '',
|
|
11
|
-
extra:
|
|
11
|
+
extra: `<p style="color:#999;font-size:0.875rem;font-family: Arial;">
|
|
12
|
+
Powered by <a href="https://www.arcblock.io" target="_blank">ArcBlock</a>'s <a href="https://www.blocklet.io" target="_blank">Blocklet Technology</a>, the decentralized web engine.
|
|
13
|
+
</p>`,
|
|
12
14
|
nodeInfo,
|
|
13
15
|
});
|
|
14
16
|
};
|
package/lib/blocklet-404.js
CHANGED
|
@@ -8,7 +8,9 @@ module.exports = (blocklet, nodeInfo) => {
|
|
|
8
8
|
appName: blocklet?.meta?.title,
|
|
9
9
|
pageTitle: `Error - ${blocklet?.meta?.title}`,
|
|
10
10
|
content: '',
|
|
11
|
-
extra:
|
|
11
|
+
extra: `<p style="color:#999;font-size:0.875rem;font-family: Arial;">
|
|
12
|
+
Powered by <a href="https://www.arcblock.io" target="_blank">ArcBlock</a>'s <a href="https://www.blocklet.io" target="_blank">Blocklet Technology</a>, the decentralized web engine.
|
|
13
|
+
</p>`,
|
|
12
14
|
nodeInfo,
|
|
13
15
|
});
|
|
14
16
|
};
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
const getCommonTemplate = require('./common');
|
|
2
2
|
const getIcon = require('./util/get-icon');
|
|
3
3
|
|
|
4
|
-
module.exports = (blocklet, nodeInfo
|
|
4
|
+
module.exports = (blocklet, nodeInfo) => {
|
|
5
5
|
return getCommonTemplate({
|
|
6
|
-
title:
|
|
6
|
+
title: 'Under maintenance',
|
|
7
7
|
icon: getIcon(blocklet),
|
|
8
8
|
appName: blocklet?.meta?.title,
|
|
9
9
|
pageTitle: `${blocklet?.meta?.title}`,
|
|
10
10
|
content: 'Please come back later',
|
|
11
|
-
extra:
|
|
11
|
+
extra: `<p style="color:#999;font-size:0.875rem;font-family: Arial;">
|
|
12
|
+
Powered by <a href="https://www.arcblock.io" target="_blank">ArcBlock</a>'s <a href="https://www.blocklet.io" target="_blank">Blocklet Technology</a>, the decentralized web engine.
|
|
13
|
+
</p>`,
|
|
12
14
|
nodeInfo,
|
|
13
15
|
});
|
|
14
16
|
};
|
|
@@ -8,7 +8,9 @@ module.exports = (blocklet, nodeInfo) => {
|
|
|
8
8
|
appName: blocklet?.meta?.title,
|
|
9
9
|
pageTitle: `${blocklet?.meta?.title}`,
|
|
10
10
|
content: 'Please come back later',
|
|
11
|
-
extra:
|
|
11
|
+
extra: `<p style="color:#999;font-size:0.875rem;font-family: Arial;">
|
|
12
|
+
Powered by <a href="https://www.arcblock.io" target="_blank">ArcBlock</a>'s <a href="https://www.blocklet.io" target="_blank">Blocklet Technology</a>, the decentralized web engine.
|
|
13
|
+
</p>`,
|
|
12
14
|
nodeInfo,
|
|
13
15
|
});
|
|
14
16
|
};
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.18-beta-
|
|
6
|
+
"version": "1.16.18-beta-bb4ebacc",
|
|
7
7
|
"description": "Provide page templates for ABT Node router",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"author": "linchen1987 <linchen.1987@foxmail.com> (http://github.com/linchen1987)",
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@arcblock/result-html-pages": "^2.8.
|
|
23
|
-
"@blocklet/meta": "1.16.18-beta-
|
|
22
|
+
"@arcblock/result-html-pages": "^2.8.11",
|
|
23
|
+
"@blocklet/meta": "1.16.18-beta-bb4ebacc"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"jest": "^27.5.1"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "aca7ff8eb508ecf586108b99a9e07ceab2a62430"
|
|
29
29
|
}
|