fixes footer URLs and logo
This commit is contained in:
@@ -106,7 +106,7 @@ const isNotHomepage = Astro.props.slug !== "";
|
||||
class="fill-white dark:fill-primary"
|
||||
/>
|
||||
<text
|
||||
x="178"
|
||||
x="170"
|
||||
y="64"
|
||||
class="fill-primary dark:fill-white"
|
||||
font-size="0.75rem"
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/wanderer.to/api-reference/auth"
|
||||
<a href="https://wanderer.to/api-reference/auth"
|
||||
>{$_("api-documentation")}</a
|
||||
>
|
||||
</li>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
import { _ } from "svelte-i18n";
|
||||
import MapWithElevation from "../trail/map_with_elevation.svelte";
|
||||
|
||||
export let summitLogs: SummitLog[];
|
||||
export let summitLogs: SummitLog[] = [];
|
||||
export let showCategory: boolean = false;
|
||||
export let showTrail: boolean = false;
|
||||
|
||||
@@ -28,14 +28,7 @@
|
||||
let currentText: string = "";
|
||||
|
||||
onMount(async () => {
|
||||
// L = (await import("leaflet")).default;
|
||||
// map = L.map("summit-log-table-map");
|
||||
// map.attributionControl.setPrefix(false);
|
||||
// L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
|
||||
// attribution: "© OpenStreetMap contributors",
|
||||
// }).addTo(map);
|
||||
// layerGroup = L.layerGroup();
|
||||
// layerGroup.addTo(map);
|
||||
|
||||
});
|
||||
|
||||
async function openMap(log: SummitLog) {
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { goto } from "$app/navigation";
|
||||
import Tabs from "$lib/components/base/tabs.svelte";
|
||||
import SummitLogCard from "$lib/components/summit_log/summit_log_card.svelte";
|
||||
import TrailDropdown from "$lib/components/trail/trail_dropdown.svelte";
|
||||
import WaypointCard from "$lib/components/waypoint/waypoint_card.svelte";
|
||||
import { Comment } from "$lib/models/comment";
|
||||
@@ -27,7 +26,7 @@
|
||||
startIcon,
|
||||
} from "$lib/util/leaflet_util";
|
||||
import "$lib/vendor/leaflet-elevation/src/index.css";
|
||||
import type { Icon, Map, Marker } from "leaflet";
|
||||
import type { Map, Marker } from "leaflet";
|
||||
import "leaflet.awesome-markers/dist/leaflet.awesome-markers.css";
|
||||
import "leaflet/dist/leaflet.css";
|
||||
import "photoswipe/style.css";
|
||||
|
||||
Reference in New Issue
Block a user