mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 16:23:35 +01:00
aa6520daac
* Added frontend development files/environment * More items-categories related removals * Improvements in pages templates (inc. static pages) * Improvements in video player * Added empty home page message + cta * Updates in media, playlist and management pages * Improvements in material icons font loading * Replaced media & playlists links in frontend dev-env * frontend package version update * chnaged frontend dev url port * static files update * Changed default position of theme switcher * enabled frontend docker container
46 lines
1.9 KiB
JavaScript
46 lines
1.9 KiB
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
const ejs = require('ejs');
|
|
|
|
const templatesPath = path.join(__dirname, './templates');
|
|
const staticTemplatesPath = path.join(__dirname, './templates/static');
|
|
|
|
const compileTmpl = (filename) =>
|
|
ejs.compile(fs.readFileSync(path.join(templatesPath, filename), 'utf8'), {
|
|
root: [templatesPath],
|
|
filename: path.join(templatesPath, filename),
|
|
outputFunctionName: 'echo',
|
|
});
|
|
|
|
const compileStaticTmpl = (filename) =>
|
|
ejs.compile(fs.readFileSync(path.join(staticTemplatesPath, filename), 'utf8'), {
|
|
root: [staticTemplatesPath],
|
|
filename: path.join(staticTemplatesPath, filename),
|
|
outputFunctionName: 'echo',
|
|
});
|
|
|
|
module.exports = {
|
|
htmlBodySnippet: compileTmpl('htmlBodySnippet.ejs'),
|
|
htmlBodySnippetEmbedPage: compileTmpl('htmlBodySnippetEmbedPage.ejs'),
|
|
htmlBodySnippetAddMediaPage: compileTmpl('htmlBodySnippetAddMediaPage.ejs'),
|
|
renderBase: compileTmpl('renderBase.ejs'),
|
|
renderPageContent: compileTmpl('renderPageContent.ejs'),
|
|
renderPageStaticContent: compileTmpl('renderPageStaticContent.ejs'),
|
|
renderEmbedPageContent: compileTmpl('renderEmbedPageContent.ejs'),
|
|
renderAddMediaPageContent: compileTmpl('renderAddMediaPageContent.ejs'),
|
|
static: {
|
|
errorPage: compileStaticTmpl('errorPage.html'),
|
|
aboutPage: compileStaticTmpl('aboutPage.html'),
|
|
termsPage: compileStaticTmpl('termsPage.html'),
|
|
contactPage: compileStaticTmpl('contactPage.html'),
|
|
signinPage: compileStaticTmpl('signinPage.html'),
|
|
signoutPage: compileStaticTmpl('signoutPage.html'),
|
|
registerPage: compileStaticTmpl('registerPage.html'),
|
|
resetPasswordPage: compileStaticTmpl('resetPasswordPage.html'),
|
|
editMediaPage: compileStaticTmpl('editMediaPage.html'),
|
|
editChannelPage: compileStaticTmpl('editChannelPage.html'),
|
|
editProfilePage: compileStaticTmpl('editProfilePage.html'),
|
|
addMediaPageTemplate: compileStaticTmpl('addMediaPageTemplate.html'),
|
|
},
|
|
};
|