Skip to content

Commit

Permalink
Update elapsed years (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
thyeggman authored Oct 28, 2024
1 parent 0f901ed commit ed82427
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion frontend/results/pages/ArchiveLanding.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,21 @@
</div>
<br/>
<div class="has-text-justified has-text-periwinkle">
The /r/anime Awards have been an ongoing volunteer effort for 4 years in a row now. The strong foundation that we've built over these years wouldn't be possible without the invaluable help of the /r/anime mod-team and the indispensable feedback of the users of /r/anime. We would like to thank every member of /r/anime who voted and participated in these Awards throughout the years, whether as jurors or members of the public. We hope to see you again in the future!
The /r/anime Awards have been an ongoing volunteer effort for {{ elapsedYears }} years in a row now. The strong foundation that we've built over these years wouldn't be possible without the invaluable help of the /r/anime mod-team and the indispensable feedback of the users of /r/anime. We would like to thank every member of /r/anime who voted and participated in these Awards throughout the years, whether as jurors or members of the public. We hope to see you again in the future!
</div>
<br/>
</div>
</section>
</div>
</template>

<script>
export default {
computed: {
elapsedYears() {
const currentYear = new Date().getFullYear();
return currentYear - 2016;
}
}
}
</script>

0 comments on commit ed82427

Please sign in to comment.