1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-06-17 18:30:05 +01:00

Use "src" subfolder instead of "templates".

This commit is contained in:
devlinjd 2015-12-06 18:18:36 -05:00
parent 3b8d100f39
commit 307c37dc44
3 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ Abstract theme representation.
// Iterate over all files in the theme folder, producing an array, fmts,
// containing info for each file.
var tplFolder = PATH.join( themeFolder, 'templates' );
var tplFolder = PATH.join( themeFolder, 'src' );
var fmts = FS.readdirSync( tplFolder ).map( function( file ) {
var absPath = PATH.join( tplFolder, file );
var pathInfo = PATH.parse(absPath);

View File

@ -21,7 +21,7 @@ HTML resume generator for FluentCV.
the HTML resume prior to saving.
*/
onBeforeSave: function( info ) {
var cssSrc = PATH.join( info.theme.folder, 'templates', '*.css' )
var cssSrc = PATH.join( info.theme.folder, 'src', '*.css' )
, outFolder = PATH.parse( info.outputFile ).dir, that = this;
info.theme.cssFiles.forEach( function( f ) {

View File

@ -94,7 +94,7 @@ Template-based resume generator base for FluentCV.
var theme = opts.themeObj || new Theme().open( tFolder );
// Load theme and CSS data
var tplFolder = PATH.join( tFolder, 'templates' );
var tplFolder = PATH.join( tFolder, 'src' );
var curFmt = theme.getFormat( this.format );
var cssInfo = { file: curFmt.css ? curFmt.cssPath : null, data: curFmt.css || null };