Skip to content

Commit 02bf9fa

Browse files
committed
fix
1 parent 7e31a3e commit 02bf9fa

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,18 @@ 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.1.2] - 2024-12-25
10+
### Fixed
11+
- CSS compatibility for old browsers
12+
- Page title
13+
914
## [0.1.1] - 2024-12-24
1015
### Fixed
1116
- Missing javascript files.
1217

1318
## [0.1.0] - 2024-12-24
1419
First version
1520

21+
[0.1.2]: https://github.com/lumeland/theme-ebook/compare/v0.1.1...v0.1.2
1622
[0.1.1]: https://github.com/lumeland/theme-ebook/compare/v0.1.0...v0.1.1
1723
[0.1.0]: https://github.com/lumeland/theme-ebook/releases/tag/v0.1.0

plugins.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import postcss from "lume/plugins/postcss.ts";
1+
import lightningcss from "lume/plugins/lightningcss.ts";
22
import basePath from "lume/plugins/base_path.ts";
33
import metas from "lume/plugins/metas.ts";
44
import prism from "lume/plugins/prism.ts";
@@ -38,7 +38,7 @@ export default function (userOptions?: Options) {
3838

3939
return (site: Lume.Site) => {
4040
site
41-
.use(postcss())
41+
.use(lightningcss())
4242
.use(basePath())
4343
.use(metas())
4444
.use(sitemap(options.sitemap))

src/_includes/layouts/book.vto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
content="black-translucent"
1313
>
1414

15-
<title> by {{ author }}</title>
15+
<title>{{ title }} by {{ author }}</title>
1616
<link rel="stylesheet" href="/styles.css">
1717
<script type="module" src="/scripts/invoker.js"></script>
1818
<script type="module" src="/scripts/main.js"></script>

0 commit comments

Comments
 (0)