WIP React > Svelte

Put most of the developed design into Svelte
This commit is contained in:
2020-02-11 15:09:32 +01:00
parent 61e45cb171
commit 9b0c154f61
95 changed files with 3627 additions and 9464 deletions

View File

@@ -0,0 +1,13 @@
<script>
export let name
export let slug
export let country
</script>
<div class="location" data-groups='["{country.continent.id}"]'>
<a href="/location/{country.slug}/{slug}">
<img src={country.flag.full_url} alt={'Flag of ' + country.name} />
<h3 class="location__city">{name}</h3>
<p class="location__country style-caps">{country.name}</p>
</a>
</div>