@aerobuilt/template-minimal 0.2.3 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,8 +5,8 @@
5
5
 
6
6
  <footer>
7
7
  <ul>
8
- <li each="{link in links}">
9
- <a href="{link.path}">{link.label}</a>
8
+ <li each="{ link in links }">
9
+ <a href="{ link.path }">{ link.label }</a>
10
10
  </li>
11
11
  </ul>
12
12
  <style>
@@ -3,8 +3,8 @@
3
3
  </script>
4
4
 
5
5
  <header>
6
- <h1>{props.title || 'Fallback Title'}</h1>
7
- <p class="subtitle">{props.subtitle}</p>
6
+ <h1>{ props.title || 'Fallback Title' }</h1>
7
+ <p class="subtitle">{ props.subtitle }</p>
8
8
  </header>
9
9
 
10
10
  <style>
@@ -7,13 +7,13 @@
7
7
  <meta charset="utf-8" />
8
8
  <meta name="viewport" content="width=device-width,initial-scale=1" />
9
9
 
10
- <title>{title || site.meta.title}</title>
11
- <meta name="title" content="{title || site.meta.title}" />
12
- <meta name="description" content="{description || site.meta.description}" />
13
- <link rel="icon" type="image/svg+xml" href="{site.meta.icon.svg}" />
14
- <link rel="canonical" href="{Aero.site}" />
10
+ <title>{ title || site.meta.title }</title>
11
+ <meta name="title" content="{ title || site.meta.title }" />
12
+ <meta name="description" content="{ description || site.meta.description }" />
13
+ <link rel="icon" type="image/svg+xml" href="{ site.meta.icon.svg }" />
14
+ <link rel="canonical" href="{ Aero.site }" />
15
15
 
16
16
  <meta property="og:type" content="website" />
17
- <meta property="og:title" content="{title || site.meta.title}" />
18
- <meta property="og:description" content="{description || site.meta.description}" />
19
- <meta property="og:image" content="{image || defaultImage}" />
17
+ <meta property="og:title" content="{ title || site.meta.title }" />
18
+ <meta property="og:description" content="{ description || site.meta.description }" />
19
+ <meta property="og:image" content="{ image || defaultImage }" />
@@ -5,7 +5,7 @@
5
5
 
6
6
  <html lang="en">
7
7
  <head>
8
- <meta-component props="{...Aero.props}" />
8
+ <meta-component props="{ ...Aero.props }" />
9
9
  <link rel="stylesheet" href="@styles/global.css" />
10
10
  <script type="module">
11
11
  import aero from 'aerobuilt'
@@ -5,5 +5,5 @@
5
5
  </script>
6
6
 
7
7
  <base-layout title="Meta Title">
8
- <header-component title="{site.about.title}" subtitle="{site.about.subtitle}" />
8
+ <header-component title="{ site.about.title }" subtitle="{ site.about.subtitle }" />
9
9
  </base-layout>
@@ -10,5 +10,5 @@
10
10
  </script>
11
11
 
12
12
  <base-layout>
13
- <header-component props="{...headerProps}" />
13
+ <header-component props="{ ...headerProps }" />
14
14
  </base-layout>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aerobuilt/template-minimal",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Jamie Wilson",
@@ -11,10 +11,9 @@
11
11
  },
12
12
  "homepage": "https://github.com/aerobuilt/aero",
13
13
  "dependencies": {
14
- "aerobuilt": "0.2.3"
14
+ "aerobuilt": "0.2.5"
15
15
  },
16
16
  "devDependencies": {
17
- "autoprefixer": "^10.4.24",
18
17
  "vite": "8.0.0-beta.15"
19
18
  },
20
19
  "scripts": {
@@ -1,2 +0,0 @@
1
- import aero from 'aerobuilt'
2
- aero.mount()