Skip to content

Commit c6fc08a

Browse files
committed
new patch
1 parent c52b14d commit c6fc08a

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
66
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
77
project adheres to [Semantic Versioning](http://semver.org/).
88

9+
## [0.10.2] - 2023-07-20
10+
### Fixed
11+
- Error when post is plain text without titles [#15].
12+
913
## [0.10.1] - 2023-07-19
1014
### Fixed
1115
- Updated styles from Lume DS.
@@ -129,7 +133,9 @@ First version
129133

130134
[#1]: https://github.com/lumeland/theme-simple-blog/issues/1
131135
[#5]: https://github.com/lumeland/theme-simple-blog/issues/5
136+
[#15]: https://github.com/lumeland/theme-simple-blog/issues/15
132137

138+
[0.10.2]: https://github.com/lumeland/theme-simple-blog/compare/v0.10.1...v0.10.2
133139
[0.10.1]: https://github.com/lumeland/theme-simple-blog/compare/v0.10.0...v0.10.1
134140
[0.10.0]: https://github.com/lumeland/theme-simple-blog/compare/v0.9.0...v0.10.0
135141
[0.9.0]: https://github.com/lumeland/theme-simple-blog/compare/v0.8.0...v0.9.0

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
- Sitemap and SEO features.
88
- Instant search engine.
99

10-
## Install as remote theme
10+
## Install as a remote theme
1111

1212
The **fastest and easiest** way to use this theme is by importing it as a remote
13-
module. It allows to create a blog in seconds and update it at any time just
14-
changing the version number in the import url. Just add the following code to
13+
module. It allows to create a blog in seconds and update it at any time just by
14+
changing the version number in the import URL. Just add the following code to
1515
your `_config.ts` file:
1616

1717
```ts
1818
import lume from "lume/mod.ts";
19-
import blog from "https://deno.land/x/lume_theme_simple_blog@v0.5.0/mod.ts";
19+
import blog from "https://deno.land/x/lume_theme_simple_blog@v0.10.2/mod.ts";
2020

2121
const site = lume();
2222

@@ -27,10 +27,10 @@ export default site;
2727

2828
You can see an example in the [demo](./demo) folder. To customize it copy the
2929
[`_data.yml`](./src/_data.yml) file in your blog root folder and edit it with
30-
your own data. The posts must be saved in the `posts` folder. For example:
31-
`posts/my-first-posts.md`.
30+
your data. The posts must be saved in the `posts` folder. For example
31+
`posts/`my-first-posts.md`.
3232

33-
## Use it as base template
33+
## Use it as a base template
3434

3535
To use this theme as a base template for a more customized blog, clone this repo
3636
and edit the [_config.ts](./_config.ts) file. The source files are in the

0 commit comments

Comments
 (0)