diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a61d24..40fe5b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ 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.15.2] - 2024-03-29 +### Changed +- Updated `@lumeland/ds` and import it from unpkg CDN. +- Use import map for LumeCMS. + ## [0.15.1] - 2024-03-20 ### Fixed - Updated `@lumeland/ds`. @@ -202,6 +207,7 @@ First version [#17]: https://github.com/lumeland/theme-simple-blog/issues/17 [#19]: https://github.com/lumeland/theme-simple-blog/issues/19 +[0.15.2]: https://github.com/lumeland/theme-simple-blog/compare/v0.15.1...v0.15.2 [0.15.1]: https://github.com/lumeland/theme-simple-blog/compare/v0.15.0...v0.15.1 [0.15.0]: https://github.com/lumeland/theme-simple-blog/compare/v0.14.0...v0.15.0 [0.14.0]: https://github.com/lumeland/theme-simple-blog/compare/v0.13.3...v0.14.0 diff --git a/_cms.ts b/_cms.ts index 3fb89c3..e331fe2 100644 --- a/_cms.ts +++ b/_cms.ts @@ -1,4 +1,4 @@ -import lumeCMS from "lume/cms.ts"; +import lumeCMS from "lume/cms/mod.ts"; const cms = lumeCMS(); diff --git a/deno.json b/deno.json index 0f3ab8c..eda57ca 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "imports": { "lume/": "https://deno.land/x/lume@v2.1.2/", - "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.7/": "../../cms/" + "lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@0.3.9/" }, "tasks": { "lume": "echo \"import 'lume/cli.ts'\" | deno run -A -", diff --git a/plugins.ts b/plugins.ts index d108219..4e864e0 100644 --- a/plugins.ts +++ b/plugins.ts @@ -74,12 +74,6 @@ export default function (userOptions?: Options) { // Alert plugin site.hooks.addMarkdownItPlugin(alert); - // Basic CSS Design System - site.remoteFile( - "_includes/css/ds.css", - "https://unpkg.com/@lumeland/ds@0.5.1/ds.css", - ); - // Mastodon comment system site.remoteFile( "/js/comments.js", diff --git a/src/posts/instructions.md b/src/posts/instructions.md index cfbcb23..2fb6a3a 100644 --- a/src/posts/instructions.md +++ b/src/posts/instructions.md @@ -26,6 +26,5 @@ export default site; ## Customization -> [!tip] -> You can use [lumeCMS](https://lume.land/cms) to customize the blog and add content easily - +> [!tip] You can use [lumeCMS](https://lume.land/cms) to customize the blog and +> add content easily diff --git a/src/styles.css b/src/styles.css index 25fe840..7929b0a 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,5 +1,5 @@ /* Lume's design system */ -@import "css/ds.css"; +@import "https://unpkg.com/@lumeland/ds@0.5.2/ds.css"; /* Custom components */ @import "css/navbar.css";