summaryrefslogtreecommitdiff
path: root/src/layouts
diff options
context:
space:
mode:
authorJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-07-06 22:27:04 -0300
committerJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-07-06 22:27:04 -0300
commit449f71511e539878af4c65f073cdc373b469c45e (patch)
tree6c264a77426284d97d1c9b9d7a27a6015c3077a8 /src/layouts
parent4ae2b810b68538ba4c287b0c80d6c2e002fe9ddd (diff)
feat: more structured data
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
Diffstat (limited to 'src/layouts')
-rw-r--r--src/layouts/Base.astro6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro
index afee012..f03252e 100644
--- a/src/layouts/Base.astro
+++ b/src/layouts/Base.astro
@@ -27,13 +27,15 @@ interface Props extends ComponentProps<typeof BaseHead> {
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
-<html dir="ltr" lang="pt-PT">
+<html dir="ltr" lang="pt-PT" itemscope itemtype="https://schema.org/WebSite">
<head>
<BaseHead {...Astro.props} />
</head>
<body>
<Header />
- <slot />
+ <div itemscope itemtype="https://schema.org/WebPage">
+ <slot />
+ </div>
<Footer />
<noscript>I see, a man of culture :)</noscript>
</body>