summaryrefslogtreecommitdiff
path: root/examples/with-markdown-plugins/src/layouts/main.astro
blob: e0a60c7ad0a22363d2d5cdf28d5b187d356877cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
const { content } = Astro.props;
---

<html lang={ content.lang || 'en' }>
  <head>
    <meta charset="utf-8" />

        <link rel="icon" type="image/x-icon" href="/favicon.ico" />

    <title>{content.title}</title>
    <link rel="stylesheet" href="/global.css" />
    <style>
      .nav {
        border-bottom: 1px solid #ccc;
        margin-bottom: 40px;
        padding-bottom: 20px;
      }
      .nav > * + * {
        margin-left: 10px;
      }
    </style>
  </head>
  <body>
    <main class="content">
      <header>
        <nav class="nav">
          <a href="/">Home</a>
          <a href="/about">About</a>
        </nav>
      </header>
      <slot />
    </main>
  </body>
</html>