Skip to content

Commit de60a9e

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent 98c8e9b commit de60a9e

5,053 files changed

Lines changed: 7236 additions & 142557 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Source/Function/Markup/Base.astro

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,24 @@
22
import "@Source/Function/Stylesheet/Inner.css";
33
44
import Meta from "@Source/Function/Meta.astro";
5-
import { Head } from "astro-capo";
5+
6+
// import { Head } from "astro-capo";
67
78
// import { ClientRouter } from "astro:transitions";
89
---
910

1011
<!doctype html>
1112
<html lang="en" class="no-js" dir="ltr">
12-
<Head>
13+
<head>
1314
<script>
1415
document.documentElement.classList.remove("no-js");
1516
document.documentElement.classList.add("js");
1617
</script>
1718

1819
<Meta />
1920

21+
<slot name="Meta" />
22+
2023
<link
2124
rel="preconnect"
2225
href="HTTPS://fonts.googleapis.com"
@@ -36,7 +39,7 @@ import { Head } from "astro-capo";
3639
<slot name="Head" />
3740

3841
<!-- <ClientRouter /> -->
39-
</Head>
42+
</head>
4043
<body aria-label="">
4144
<div class="grow p-5 text-center">
4245
<ul class="flex">

Source/Function/Markup/Transparent.astro

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,22 @@
22
// import "@Source/Function/Stylesheet/Inner.css";
33
44
import Meta from "@Source/Function/Meta.astro";
5-
import { Head } from "astro-capo";
5+
6+
// import { Head } from "astro-capo";
67
---
78

89
<!doctype html>
910
<html lang="en" class="no-js" dir="ltr">
10-
<Head>
11+
<head>
1112
<script>
1213
document.documentElement.classList.remove("no-js");
1314
document.documentElement.classList.add("js");
1415
</script>
1516

1617
<Meta />
1718

19+
<slot name="Meta" />
20+
1821
<link
1922
rel="preconnect"
2023
href="HTTPS://fonts.googleapis.com"
@@ -32,7 +35,7 @@ import { Head } from "astro-capo";
3235
</style>
3336

3437
<slot name="Head" />
35-
</Head>
38+
</head>
3639
<body>
3740
<slot />
3841

0 commit comments

Comments
 (0)