Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Dec 25, 2024
1 parent 7e31a3e commit 02bf9fa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
project adheres to [Semantic Versioning](http://semver.org/).

## [0.1.2] - 2024-12-25
### Fixed
- CSS compatibility for old browsers
- Page title

## [0.1.1] - 2024-12-24
### Fixed
- Missing javascript files.

## [0.1.0] - 2024-12-24
First version

[0.1.2]: https://github.com/lumeland/theme-ebook/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/lumeland/theme-ebook/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/lumeland/theme-ebook/releases/tag/v0.1.0
4 changes: 2 additions & 2 deletions plugins.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import postcss from "lume/plugins/postcss.ts";
import lightningcss from "lume/plugins/lightningcss.ts";
import basePath from "lume/plugins/base_path.ts";
import metas from "lume/plugins/metas.ts";
import prism from "lume/plugins/prism.ts";
Expand Down Expand Up @@ -38,7 +38,7 @@ export default function (userOptions?: Options) {

return (site: Lume.Site) => {
site
.use(postcss())
.use(lightningcss())
.use(basePath())
.use(metas())
.use(sitemap(options.sitemap))
Expand Down
2 changes: 1 addition & 1 deletion src/_includes/layouts/book.vto
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
content="black-translucent"
>

<title> by {{ author }}</title>
<title>{{ title }} by {{ author }}</title>
<link rel="stylesheet" href="/styles.css">
<script type="module" src="/scripts/invoker.js"></script>
<script type="module" src="/scripts/main.js"></script>
Expand Down

0 comments on commit 02bf9fa

Please sign in to comment.