Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beta061 #193

Merged
merged 6 commits into from
Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,3 @@ node_modules/
.cache

# saga build
src/themes/grunn/assets/css/style.css
src/themes/grunn/assets/css/style.min.css
4 changes: 2 additions & 2 deletions eleventy.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const faviconsPlugin = require("eleventy-plugin-gen-favicons");

async function picture(image) {
// netlifycms have a tendency to create an empty image in the markdown image: "" so test for this and kill it
if (image.img == "") {
if (image.img == "" || !image.img) {
return "";
}

Expand Down Expand Up @@ -117,7 +117,7 @@ module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("src/debug/");

// global vars
eleventyConfig.addNunjucksGlobal("saga11version", "0.6 beta");
eleventyConfig.addNunjucksGlobal("saga11version", "0.6.1 beta");
// get the theme folder name
eleventyConfig.addNunjucksGlobal("theme", theme);

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "saga11",
"version": "0.6beta",
"version": "0.6.1beta",
"description": "Website builder based on 11ty & netlifycms",
"main": "eleventy.config.js",
"scripts": {
Expand Down
Loading