fitness: add page titles to all fitness routes
All checks were successful
CI / update (push) Successful in 2m4s
All checks were successful
CI / update (push) Successful in 2m4s
This commit is contained in:
@@ -18,6 +18,8 @@
|
|||||||
}));
|
}));
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head><title>Exercises - Fitness</title></svelte:head>
|
||||||
|
|
||||||
<div class="exercises-page">
|
<div class="exercises-page">
|
||||||
<h1>Exercises</h1>
|
<h1>Exercises</h1>
|
||||||
|
|
||||||
|
|||||||
@@ -158,6 +158,8 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head><title>{exercise?.name ?? 'Exercise'} - Fitness</title></svelte:head>
|
||||||
|
|
||||||
<div class="exercise-detail">
|
<div class="exercise-detail">
|
||||||
<h1>{exercise?.name ?? 'Exercise'}</h1>
|
<h1>{exercise?.name ?? 'Exercise'}</h1>
|
||||||
|
|
||||||
|
|||||||
@@ -35,6 +35,8 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head><title>History - Fitness</title></svelte:head>
|
||||||
|
|
||||||
<div class="history-page">
|
<div class="history-page">
|
||||||
<h1>History</h1>
|
<h1>History</h1>
|
||||||
|
|
||||||
|
|||||||
@@ -427,6 +427,11 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head>
|
||||||
|
<title>{session?.name ?? 'Workout'} - Fitness</title>
|
||||||
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
||||||
|
</svelte:head>
|
||||||
|
|
||||||
<div class="session-detail">
|
<div class="session-detail">
|
||||||
<div class="detail-header">
|
<div class="detail-header">
|
||||||
<div>
|
<div>
|
||||||
@@ -681,10 +686,6 @@
|
|||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<svelte:head>
|
|
||||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
|
||||||
</svelte:head>
|
|
||||||
|
|
||||||
{#if showPicker}
|
{#if showPicker}
|
||||||
<ExercisePicker
|
<ExercisePicker
|
||||||
onSelect={(id) => { addExerciseToEdit(id); showPicker = false; }}
|
onSelect={(id) => { addExerciseToEdit(id); showPicker = false; }}
|
||||||
|
|||||||
@@ -222,6 +222,8 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head><title>Measure - Fitness</title></svelte:head>
|
||||||
|
|
||||||
<div class="measure-page">
|
<div class="measure-page">
|
||||||
<h1>Measure</h1>
|
<h1>Measure</h1>
|
||||||
|
|
||||||
|
|||||||
@@ -88,6 +88,8 @@
|
|||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head><title>Stats - Fitness</title></svelte:head>
|
||||||
|
|
||||||
<div class="stats-page">
|
<div class="stats-page">
|
||||||
<h1>Stats</h1>
|
<h1>Stats</h1>
|
||||||
|
|
||||||
|
|||||||
@@ -285,6 +285,8 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head><title>Workout - Fitness</title></svelte:head>
|
||||||
|
|
||||||
<div class="template-view">
|
<div class="template-view">
|
||||||
{#if hasSchedule && nextTemplate}
|
{#if hasSchedule && nextTemplate}
|
||||||
<section class="next-workout">
|
<section class="next-workout">
|
||||||
|
|||||||
@@ -322,6 +322,8 @@
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head><title>{workout.name || 'Workout'} - Fitness</title></svelte:head>
|
||||||
|
|
||||||
{#if completionData}
|
{#if completionData}
|
||||||
<div class="completion">
|
<div class="completion">
|
||||||
<div class="completion-header">
|
<div class="completion-header">
|
||||||
|
|||||||
Reference in New Issue
Block a user