tecitheme 0.11.19 → 0.11.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -162,7 +162,7 @@ import Button from './Button.svelte'
|
|
|
162
162
|
{#if !showPagination}
|
|
163
163
|
<div class="mt-8 w-full">
|
|
164
164
|
<Button
|
|
165
|
-
url="/news"
|
|
165
|
+
url="/news/"
|
|
166
166
|
text="All News Posts"
|
|
167
167
|
color="teci"
|
|
168
168
|
justify="right"
|
|
@@ -185,7 +185,7 @@ import Button from './Button.svelte'
|
|
|
185
185
|
<div class="prose">
|
|
186
186
|
<p class="pt-8">
|
|
187
187
|
Sorry, there isn't any news for you to see here.<br />
|
|
188
|
-
Please visit the <a rel="external" href="/news">All News</a> page for an
|
|
188
|
+
Please visit the <a rel="external" href="/news/">All News</a> page for an
|
|
189
189
|
updated list.
|
|
190
190
|
</p>
|
|
191
191
|
</div>
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
<script>import
|
|
1
|
+
<script>import CountrySelector from "./CountrySelector.svelte";
|
|
2
|
+
import Icon from "./Icon.svelte";
|
|
3
|
+
import { onMount } from "svelte";
|
|
2
4
|
import { scrollTo, validateEmail } from "../utils.js";
|
|
3
5
|
import { variables } from "../variables";
|
|
4
6
|
onMount(() => {
|