We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1494156 commit 0575bccCopy full SHA for 0575bcc
web/src/components/Welcome.vue
@@ -4,7 +4,7 @@
4
<h1>{{info.servername}}</h1>
5
<p>Server time elapsed {{worldTime}}</p>
6
7
- <p><a class="btn btn-primary btn-lg" href="https://www.craft.moe" role="button">Learn more »</a></p>
+ <p><a class="btn btn-primary btn-lg" href="{{homepage}}" role="button">Learn more »</a></p>
8
9
</div>
10
@@ -23,6 +23,9 @@ export default {
23
worldTime() {
24
return moment.duration(this.info.worldTime || 0, 'seconds').humanize();
25
},
26
+ homePage() {
27
+ return this.info.homepage;
28
+ },
29
30
};
31
0 commit comments