You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/index.md
+13-7Lines changed: 13 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,6 @@ footerHtml: false
14
14
15
15
<scriptsetup>
16
16
17
-
import { ref } from'vue';
18
-
19
17
constcards= [
20
18
{
21
19
id:'btn1',
@@ -43,7 +41,7 @@ const cards = [
43
41
}
44
42
];
45
43
46
-
constbottomCards=ref([
44
+
constbottomCards= [
47
45
{
48
46
id:'btn4',
49
47
title:'About HUNT Cloud',
@@ -63,7 +61,7 @@ const bottomCards = ref([
63
61
href:'https://www.ntnu.edu/mh/huntcloud',
64
62
description:'Explore and evolve. See the main HUNT Cloud page for information on HUNT Cloud\'s scientific products and services.',
65
63
}
66
-
]);
64
+
];
67
65
68
66
constcardStyle= {
69
67
padding:'25px',
@@ -106,7 +104,7 @@ const imageHeight = '180px';
106
104
v-for="card in bottomCards"
107
105
:key="card.id"
108
106
class="hc-column-4"
109
-
:style="cardStyle"
107
+
:style="card.isMascot ? {} : cardStyle"
110
108
:class="{ 'mascot-container': card.isMascot }"
111
109
>
112
110
<template v-if="card.isMascot">
@@ -128,7 +126,7 @@ const imageHeight = '180px';
128
126
</template>
129
127
</div>
130
128
</div>
131
-
<div class="hc-row">
129
+
<div class="hc-row footer">
132
130
<center>
133
131
<i>These pages contain the official user documentation for HUNT Cloud. <br>HUNT Cloud is a scientific infrastructure for data explorations at <a href="https://www.ntnu.edu/">NTNU</a>, Norway.<br><a href="/govern-science/privacy-statement">Privacy statement</a>.</i><br>
0 commit comments