Merge branch 'master' into month_name
This commit is contained in:
commit
11484146e9
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "desirae",
|
"name": "desirae",
|
||||||
"version": "0.11.1",
|
"version": "0.11.2",
|
||||||
"authors": [
|
"authors": [
|
||||||
"AJ ONeal <awesome@coolaj86.com>"
|
"AJ ONeal <awesome@coolaj86.com>"
|
||||||
],
|
],
|
||||||
|
|
|
@ -267,6 +267,10 @@
|
||||||
if (!themename) {
|
if (!themename) {
|
||||||
themename = desi.site.theme || desi.config.theme;
|
themename = desi.site.theme || desi.config.theme;
|
||||||
}
|
}
|
||||||
|
if (!desi.config.themes[themename]) {
|
||||||
|
console.error("'" + themename + "' was not found among the themes");
|
||||||
|
return arr;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO NO DEFAULTS
|
// TODO NO DEFAULTS
|
||||||
if ('__page__' === layoutname) {
|
if ('__page__' === layoutname) {
|
||||||
|
|
|
@ -78,7 +78,10 @@
|
||||||
console.error(file);
|
console.error(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
obj[keyname][filename] = data || obj[keyname][filename];
|
data = obj[keyname][filename] = data || obj[keyname][filename];
|
||||||
|
if (data) {
|
||||||
|
data.filename = file.name;
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
if (!obj[keyname][filename]) {
|
if (!obj[keyname][filename]) {
|
||||||
obj[keyname][filename] = {};
|
obj[keyname][filename] = {};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "desirae",
|
"name": "desirae",
|
||||||
"version": "0.11.1",
|
"version": "0.11.2",
|
||||||
"description": "An in-browser static blog library and static site generator. Similar to Jekyll, Octopress, Nanoc, etc",
|
"description": "An in-browser static blog library and static site generator. Similar to Jekyll, Octopress, Nanoc, etc",
|
||||||
"main": "desirae.js",
|
"main": "desirae.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git@github.com:DearDesi/desirae.git"
|
"url": "git@git.daplie.com:Daplie/desirae.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"dear",
|
"dear",
|
||||||
|
@ -25,9 +25,9 @@
|
||||||
"author": "AJ ONeal",
|
"author": "AJ ONeal",
|
||||||
"license": "Apache2",
|
"license": "Apache2",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/DearDesi/desirae/issues"
|
"url": "https://git.daplie.com/Daplie/desirae/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/DearDesi/desirae",
|
"homepage": "https://git.daplie.com/Daplie/desirae",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bluebird": "^2.5.3",
|
"bluebird": "^2.5.3",
|
||||||
"escape-string-regexp": "^1.0.2",
|
"escape-string-regexp": "^1.0.2",
|
||||||
|
|
Loading…
Reference in New Issue