Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.28.86
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
panini /
Delete
Unzip
Name
Size
Permission
Date
Action
.github
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
bin
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
helpers
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
lib
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
node_modules
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
test
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
.babelrc
26
B
-rw-rw-r--
2022-08-30 11:49
.coveralls.yml
71
B
-rw-rw-r--
2022-08-30 11:49
.travis.yml
72
B
-rw-rw-r--
2022-08-30 11:49
LICENSE
1.03
KB
-rw-rw-r--
2022-08-30 11:49
index.js
1.65
KB
-rw-rw-r--
2022-08-30 11:49
package.json
1.15
KB
-rw-rw-r--
2022-08-30 11:49
readme.md
5.29
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
var panini; var help = require('./lib/helpMessage'); /** * Initializes an instance of Panini. * @constructor * @param {object} options - Configuration options to use. */ function Panini(options) { this.options = options; this.Handlebars = require('handlebars'); this.layouts = {}; this.data = {}; if (!options.layouts) { throw new Error('Panini error: you must specify a directory for layouts.'); } if (!options.root) { throw new Error('Panini error: you must specify the root folder that pages live in.') } } Panini.prototype.refresh = require('./lib/refresh'); Panini.prototype.loadLayouts = require('./lib/loadLayouts'); Panini.prototype.loadPartials = require('./lib/loadPartials'); Panini.prototype.loadHelpers = require('./lib/loadHelpers'); Panini.prototype.loadBuiltinHelpers = require('./lib/loadBuiltinHelpers'); Panini.prototype.loadData = require('./lib/loadData'); Panini.prototype.render = require('./lib/render'); /** * Gulp stream function that renders HTML pages. The first time the function is invoked in the stream, a new instance of Panini is created with the given options. * @param {object} options - Configuration options to pass to the new Panini instance. * @returns {function} Transform stream function that renders HTML pages. */ module.exports = function(options) { if (!panini) { panini = new Panini(options); panini.loadBuiltinHelpers(); panini.refresh(); module.exports.refresh = panini.refresh.bind(panini); } // Compile pages with the above helpers return panini.render(); } module.exports.Panini = Panini; module.exports.refresh = function() {} module.exports.help = function() { help(); }