1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-04 05:17:08 +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);