Moving static files, adding robots, adding sitemap
This commit is contained in:
parent
82b5709faa
commit
247f07a4e5
107 changed files with 168 additions and 63 deletions
|
@ -7,8 +7,8 @@ export interface Props {
|
|||
|
||||
const { mlb, link, name } = Astro.props
|
||||
|
||||
const ce_img: string = `/ce/${link}.webp`
|
||||
const mlb_ce: string = `/ce/mlb.webp`
|
||||
const ce_img: string = `/assets/ce/${link}.webp`
|
||||
const mlb_ce: string = `/assets/ce/mlb.webp`
|
||||
let mlb_image: string = 'mlbalign'
|
||||
|
||||
if (mlb === 'false') {
|
||||
|
|
|
@ -6,7 +6,7 @@ export interface Props {
|
|||
}
|
||||
|
||||
const { image, link, site } = Astro.props
|
||||
const icon: string = `background-image: url('/social/${image}.webp')`
|
||||
const icon: string = `background-image: url('/assets/social/${image}.webp')`
|
||||
---
|
||||
|
||||
<a href={link} target="_blank" rel="noopener noreferrer" aria-label={site}>
|
||||
|
|
|
@ -8,7 +8,7 @@ export interface Props {
|
|||
|
||||
const { link, image, origin, name } = Astro.props
|
||||
|
||||
const img: string = `/favourites/${image}.webp`
|
||||
const img: string = `/assets/favourites/${image}.webp`
|
||||
---
|
||||
|
||||
<a href={link} target="_blank" rel="noopener noreferrer">
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
<header>
|
||||
<a href="/" rel="noopener noreferrer" aria-label="Home">
|
||||
<img src="/logo.svg" alt="" />
|
||||
<img src="/assets/logo.svg" alt="" />
|
||||
</a>
|
||||
<ul class="desktop">
|
||||
<slot />
|
||||
|
|
|
@ -13,8 +13,8 @@ export interface Props {
|
|||
const { bond10, ml, image_bond, image_servant, np, skills, level, name } =
|
||||
Astro.props
|
||||
|
||||
const servant_img: string = `/servant/${image_servant}.webp`
|
||||
const bondce_img: string = `/ce/bond-ce/${image_bond}.webp`
|
||||
const servant_img: string = `/assets/servant/${image_servant}.webp`
|
||||
const bondce_img: string = `/assets/ce/bond-ce/${image_bond}.webp`
|
||||
let bondce_css: string = 'bond-ce'
|
||||
|
||||
if (bond10 === 'false') {
|
||||
|
|
|
@ -16,7 +16,7 @@ const options_date: Intl.DateTimeFormatOptions = {
|
|||
}
|
||||
|
||||
const formatted_date = new Date(date).toLocaleDateString('de-DE', options_date)
|
||||
const icon: string = `background: url('/ta_icons/${image}.webp')`
|
||||
const icon: string = `background: url('/assets/ta_icons/${image}.webp')`
|
||||
|
||||
let hasuser = ''
|
||||
if (user !== undefined) {
|
||||
|
|
|
@ -7,7 +7,7 @@ export interface Props {
|
|||
|
||||
const { image, link, title } = Astro.props
|
||||
|
||||
const icon: string = `background-image: url('/technologies/${image}.webp')`
|
||||
const icon: string = `background-image: url('/assets/technologies/${image}.webp')`
|
||||
---
|
||||
|
||||
<a href={link} target="_blank" rel="noopener noreferrer" aria-label={title}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue