astro-accelerator 0.0.15 → 0.0.16
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.
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.16",
|
|
3
3
|
"author": "Steve Fenton",
|
|
4
4
|
"name": "astro-accelerator",
|
|
5
5
|
"description": "A super-lightweight, accessible, SEO-friendly starter project for Astro",
|
|
@@ -40,6 +40,8 @@
|
|
|
40
40
|
"env.d.ts",
|
|
41
41
|
"tsconfig.json",
|
|
42
42
|
"astro.config.mjs",
|
|
43
|
+
"sample/*",
|
|
44
|
+
"sample/**/*",
|
|
43
45
|
"src/config.ts",
|
|
44
46
|
"src/pages/index.md",
|
|
45
47
|
"src/pages/search.md",
|
|
@@ -50,9 +52,7 @@
|
|
|
50
52
|
"src/pages/tag/[[]tag[]]/[[]page[]].astro",
|
|
51
53
|
"src/pages/search.json.ts",
|
|
52
54
|
"src/pages/sitemap.xml.ts",
|
|
53
|
-
"src/sample/*",
|
|
54
55
|
"src/pages/report/*",
|
|
55
|
-
"src/sample/**/*",
|
|
56
56
|
"src/layouts/*",
|
|
57
57
|
"src/themes/**/*",
|
|
58
58
|
"src/data/*",
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: src/layouts/Default.astro
|
|
3
|
+
title: Sample Post 1
|
|
4
|
+
navMenu: false
|
|
5
|
+
pubDate: 2022-09-01
|
|
6
|
+
keywords: sample,post
|
|
7
|
+
description: A sample post
|
|
8
|
+
bannerImage:
|
|
9
|
+
src: /img/surface-accessories.png
|
|
10
|
+
alt: Dummy image
|
|
11
|
+
authors:
|
|
12
|
+
- steve-fenton
|
|
13
|
+
categories:
|
|
14
|
+
- Example
|
|
15
|
+
- Sample
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
This is an example post with more of the front matter set up, such as except and images.
|
|
19
|
+
|
|
20
|
+
:::figure
|
|
21
|
+
:img{src=/img/surface-accessories.png alt="Microsoft Surface keyboard and wireless headset"}
|
|
22
|
+
::figcaption[Microsoft accessories]
|
|
23
|
+
:::
|
|
24
|
+
|
|
25
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi sit amet elit sodales, egestas odio eu, interdum nunc. Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elit odio, dapibus nec finibus sit amet, aliquam a tortor.
|
|
26
|
+
|
|
27
|
+
Sed ultricies sollicitudin ipsum at bibendum. Nulla euismod erat arcu, vel convallis risus sagittis non. Fusce scelerisque arcu nec blandit dictum. In vel ultricies nisi. Vivamus pharetra, nibh sit amet semper tristique, leo sapien scelerisque risus, a pharetra tortor lectus at nisl.
|
|
28
|
+
|
|
29
|
+
Vestibulum dui mauris, mattis mattis hendrerit non, aliquam non sem. Nullam orci arcu, viverra vel quam sed, dapibus porta dui. Etiam venenatis ipsum eget mi sodales lobortis. Donec varius non metus eget congue. Suspendisse quis mauris vitae lectus porttitor placerat at quis sapien.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: src/layouts/Default.astro
|
|
3
|
+
title: Welcome to Astro Accelerator
|
|
4
|
+
subtitle: A *super-lightweight*, accessible, SEO-friendly starter project for Astro
|
|
5
|
+
navTitle: Home
|
|
6
|
+
navOrder: 0
|
|
7
|
+
pubDate: 2022-09-17
|
|
8
|
+
keywords: astro,accelerator,site generator
|
|
9
|
+
description: An accelerator for a very clean version of Astro.
|
|
10
|
+
bannerImage:
|
|
11
|
+
src: /img/surface-accessories.png
|
|
12
|
+
alt: Dummy image
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
Welcome to Astro Accelerator. A super-lightweight, accessible, SEO friendly starter project for [Astro](https://astro.build/).
|
|
16
|
+
|
|
17
|
+
:::div{.note}
|
|
18
|
+
The Astro Accelerator source code is available on [GitHub](https://github.com/Steve-Fenton/astro-accelerator).
|
|
19
|
+
|
|
20
|
+
View the [documentation](https://astro.stevefenton.co.uk/)
|
|
21
|
+
:::
|