Skip to content

Commit b4a6626

Browse files
committed
Finalized Infopage, ready to push to master
1 parent 3746495 commit b4a6626

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/views/HelpPage.vue

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="fall-fest-container">
2+
<div class="info-page-container">
33
<h1 style="margin: auto; text-align: center;">Helpful Resources</h1>
44
<InformationCard v-for="information, j in informations" :key="information" ref=""
55
:information="information"/>
@@ -14,10 +14,11 @@ import InformationCard from "../components/InformationCard.vue";
1414
const informations = ref([]);
1515
const repo = remult.repo(Information);
1616
onMounted(async () => {
17-
repo.find()
18-
.then(e => {
19-
informations.value = e;
20-
});
17+
repo.find({
18+
skip: 4 // Skips the first 4 items (starts from the 5th, allows the fall-fest stuff to stay Anna's legacy and all that)
19+
}).then(e => {
20+
informations.value = e;
21+
});
2122
});
2223
</script>
2324
<style scoped lang="scss">
@@ -42,7 +43,7 @@ onMounted(async () => {
4243
}
4344
}
4445
45-
.fall-fest-container{
46+
.info-page-container{
4647
background: linear-gradient(to top left, #35c982, #4683FF);
4748
width: 100%;
4849
background-repeat: repeat;

0 commit comments

Comments
 (0)