Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Mar 29, 2024
1 parent cc25857 commit a3b3cde
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion _cms.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import lumeCMS from "lume/cms.ts";
import lumeCMS from "lume/cms/mod.ts";

const cms = lumeCMS();

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"imports": {
"lume/": "https://deno.land/x/[email protected]/",
"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 -",
Expand Down
6 changes: 0 additions & 6 deletions plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]/ds.css",
);

// Mastodon comment system
site.remoteFile(
"/js/comments.js",
Expand Down
5 changes: 2 additions & 3 deletions src/posts/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion src/styles.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Lume's design system */
@import "css/ds.css";
@import "https://unpkg.com/@lumeland/[email protected]/ds.css";

/* Custom components */
@import "css/navbar.css";
Expand Down

0 comments on commit a3b3cde

Please sign in to comment.