Skip to content

Commit

Permalink
UJ: Build + Push
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwieds committed May 28, 2024
1 parent 7e1d7b3 commit 47c5741
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Workspace settings
{
// The following will hide certian files from the file explorer
"files.exclude": {
// Hide any files with /master/ in the path
"**/master/**": true,
}
}
4 changes: 4 additions & 0 deletions _layouts/app/blog/post.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
layout: master/placeholder/blog/post
---
{{ content }}
12 changes: 12 additions & 0 deletions _websrc/gulp_tasks/app/build-post.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Libraries
// ...

// Module
module.exports = function () {
return new Promise(function(resolve, reject) {

// ...

return resolve();
});
}

0 comments on commit 47c5741

Please sign in to comment.