Skip to content

Commit

Permalink
Merge pull request #193 from mortendk/beta061
Browse files Browse the repository at this point in the history
Beta061
  • Loading branch information
mortendk committed Oct 11, 2022
2 parents fd89593 + 0071983 commit b3f445b
Show file tree
Hide file tree
Showing 6 changed files with 3,878 additions and 6 deletions.
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

0 comments on commit b3f445b

Please sign in to comment.