summaryrefslogtreecommitdiff
path: root/src/layouts/Base.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts/Base.astro')
-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>