Updated
|
|
@ -21,7 +21,7 @@ const config = toml.parse(fs.readFileSync('configs/config.site.toml', 'utf8'))
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
||||
<meta name="name" content={config.website.name} />
|
||||
<meta name="description" content={config.website.description} />
|
||||
<meta name="title" property="og:title" content={config.website.name} />
|
||||
<meta name="title" property="og:title" content={title} />
|
||||
<meta name="keywords" content="HTML, CSS, JavaScript" />
|
||||
<meta name="developer" content={config.website.developer} />
|
||||
<meta name="designer" content={config.website.designer} />
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
---
|
||||
interface Props {
|
||||
alignment?: 'row' | 'column'
|
||||
horizontal?: boolean
|
||||
}
|
||||
|
||||
const { alignment } = Astro.props
|
||||
const { horizontal } = Astro.props
|
||||
---
|
||||
|
||||
{
|
||||
alignment ? (
|
||||
<main class={`dasig-page-${alignment}`}>
|
||||
horizontal ? (
|
||||
<main class={`dasig-page-column`}>
|
||||
<slot />
|
||||
</main>
|
||||
) : (
|
||||
<main class="dasig-page">
|
||||
<main class="dasig-page-row">
|
||||
<slot />
|
||||
</main>
|
||||
)
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 373 B After Width: | Height: | Size: 536 B |
|
Before Width: | Height: | Size: 888 B After Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 59 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 71 KiB |
|
|
@ -6,12 +6,12 @@ import PA1 from '../../@dasig/images/pat-alcala.avif'
|
|||
import PA2 from '../../@dasig/images/pat-alcala.webp'
|
||||
---
|
||||
|
||||
<Layout title="Dasig - Astro">
|
||||
<Page alignment="column">
|
||||
<Layout title="Dasig - Static">
|
||||
<Page>
|
||||
<Column>
|
||||
<Logo size={250} />
|
||||
|
||||
<h1>Dasig - Static</h1>
|
||||
<h2>An architectural web framework for static websites</h2>
|
||||
<Counter />
|
||||
|
||||
<Footer>
|
||||
|
|
|
|||