File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 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";
1414const informations = ref ([]);
1515const repo = remult .repo (Information);
1616onMounted (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 ;
You can’t perform that action at this time.
0 commit comments