64 lines
2.1 KiB
JavaScript
64 lines
2.1 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.projects_header = exports.product_header = exports.machine_header = exports.drawing_image = exports.gallery_image = exports.howto_header = void 0;
|
|
const strings_1 = require("../common/strings");
|
|
exports.howto_header = (title, category, image, description = "", tagline = "", config = "") => {
|
|
return `---
|
|
image: ${image}
|
|
category: "${category}"
|
|
title: "${title}"
|
|
tagline: ${tagline || '""'}
|
|
description: ${description || `"Precious Plastic - Howto : ${category} :: ${title} "`}
|
|
${config}
|
|
---\n`;
|
|
};
|
|
exports.gallery_image = (path, title = "", alt = "") => {
|
|
return `
|
|
- url: "${path}"
|
|
image_path: "${path}"
|
|
alt: "${alt}"
|
|
title: "${title}"`;
|
|
};
|
|
exports.drawing_image = (path, pdf, title = "", alt = "") => {
|
|
return `
|
|
- url: "${pdf}"
|
|
image_path: "${path}"
|
|
alt: "${alt}"
|
|
title: "${title}"`;
|
|
};
|
|
exports.machine_header = (title, category, image, slug, rel, description = "", tagline = "", config = "") => {
|
|
return `---
|
|
image: ${image}
|
|
category: "${category}"
|
|
title: "${title}"
|
|
product_rel: "/${rel}"
|
|
tagline: ${tagline || '""'}
|
|
description: ${description || `"Precious Plastic - Machine : ${strings_1.capitalize(category)} :: ${title}"`}
|
|
${config}
|
|
---\n`;
|
|
};
|
|
exports.product_header = (title, category, image, slug, rel, description = "", tagline = "", config = "") => {
|
|
return `---
|
|
image: ${image}
|
|
category: "${category}"
|
|
title: "${title}"
|
|
product_rel: "/${rel}"
|
|
tagline: ${tagline || '""'}
|
|
description: ${description || `"Precious Plastic - Machine : ${title} by PlasticHub"`}
|
|
${config}
|
|
---\n`;
|
|
};
|
|
exports.projects_header = (title, category, image, slug, rel, description = "", tagline = "", config = "") => {
|
|
return `---
|
|
image: ${image}
|
|
category: "${category}"
|
|
title: "${title}"
|
|
product_rel: "/${rel}"
|
|
tagline: ${tagline || '""'}
|
|
description: ${description || `"Precious Plastic - ${strings_1.capitalize(category)} :: ${title}"`}
|
|
${config}
|
|
sidebar:
|
|
nav: "projects"
|
|
---\n`;
|
|
};
|
|
//# sourceMappingURL=front.js.map
|