-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #234 from wmde/C23_WMDE_Desktop_EN_01
C23_WMDE_Desktop_EN_01
- Loading branch information
Showing
16 changed files
with
150 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<template> | ||
<KeenSliderSlide :is-current="currentSlide === 0"> | ||
<p class="headline"> | ||
<InfoIcon fill="#990a00"/> | ||
<strong> “Wikipedia is not for sale.” - A personal appeal from Wikipedia founder Jimmy Wales.</strong> | ||
</p> | ||
<p> | ||
Please don't ignore this 1-minute read. This {{ currentDayName }}, {{ currentDate }}, I ask you to reflect | ||
on the number of times you visited Wikipedia in the past year, the value you got from it, and whether | ||
you're able to give €5 back. | ||
</p> | ||
</KeenSliderSlide> | ||
<KeenSliderSlide :is-current="currentSlide === 1"> | ||
<p> | ||
If you can, please join the 1% of readers who give. <span class="wmde-banner-text-animated-highlight">If | ||
everyone reading this right now gave just €5, we'd hit our goal in a couple of hours.</span> It's hard to | ||
know what to trust online these days. Disinformation and scammers are everywhere. | ||
</p> | ||
</KeenSliderSlide> | ||
<KeenSliderSlide :is-current="currentSlide === 2"> | ||
<p> | ||
We are passionate about our model because we want everyone to have equal access to quality information | ||
- something that is becoming harder and harder to find online. If Wikipedia has given you €5 worth of | ||
knowledge this year, please give back. <em>Thank you.</em> | ||
</p> | ||
</KeenSliderSlide> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { DynamicContent } from '@src/utils/DynamicContent/DynamicContent'; | ||
import { inject } from 'vue'; | ||
import InfoIcon from '@src/components/Icons/InfoIcon.vue'; | ||
import KeenSliderSlide from '@src/components/Slider/KeenSliderSlide.vue'; | ||
interface Props { | ||
currentSlide: number | ||
} | ||
defineProps<Props>(); | ||
const { currentDayName, currentDate }: DynamicContent = inject( 'dynamicCampaignText' ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<template> | ||
<div class="wmde-banner-message"> | ||
<div> | ||
<p> | ||
<InfoIcon fill="#990a00"/> | ||
<strong> “Wikipedia is not for sale.” - A personal appeal from Wikipedia founder Jimmy Wales.</strong> | ||
</p> | ||
<p> | ||
Please don't ignore this 1-minute read. This {{ currentDayName }}, {{ currentDate }}, I ask you to | ||
reflect on the number of times you visited Wikipedia in the past year, the value you got from it, | ||
and whether you're able to give 5€ back. If you can, please join the 1% of readers who | ||
give. <span class="wmde-banner-text-animated-highlight">If everyone reading this right now gave | ||
just 5€, we'd hit our goal in a couple of hours.</span> | ||
</p> | ||
|
||
<p> | ||
It's hard to know what to trust online these days. Disinformation and scammers are everywhere. | ||
Wikipedia is different. It's not perfect, but it's not here to make a profit or to push a particular | ||
perspective. It's written by everyone, together. Wikipedia is something we all share, like a library | ||
or a public park. We are passionate about our model because we want everyone to have equal access to | ||
quality information - something that is becoming harder and harder to find online. | ||
</p> | ||
|
||
<p> | ||
If Wikipedia has given you 5€ worth of knowledge this year, please give back. There are no small | ||
contributions: every edit counts, every donation counts. Thank you. | ||
</p> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { inject } from 'vue'; | ||
import { DynamicContent } from '@src/utils/DynamicContent/DynamicContent'; | ||
import InfoIcon from '@src/components/Icons/InfoIcon.vue'; | ||
const { currentDayName, currentDate }: DynamicContent = inject( 'dynamicCampaignText' ); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.