jade is outdated. Now it's called pug according to https://github.com/expressjs/express/issues/2952

This commit is contained in:
Roman Storm 2016-05-20 22:52:41 -07:00
parent 7540320d7b
commit efe3a88f6b
5 changed files with 9 additions and 9 deletions

View File

@ -73,7 +73,7 @@ process.on('uncaughtException', function(err) {
app.set('port', (process.env.PORT || 5000));
app.use(express.static(__dirname + '/public'));
app.set('view engine', 'jade');
app.set('view engine', 'pug');
require('./helpers/commonHelper')(app);
require('./helpers/etherHelper')(app);
@ -81,4 +81,4 @@ require('./controllers/index')(app);
app.listen(app.get('port'), function () {
console.log('Node app is running on port', app.get('port'));
});
});

View File

@ -8,12 +8,12 @@
},
"dependencies": {
"express": "~4.13.x",
"jade": "^1.11.0",
"twilio": "~2.9.x",
"mongodb": "~2.1.x",
"body-parser": "^1.12.4",
"fs": "latest",
"web3": "latest"
"web3": "latest",
"pug": "latest"
},
"engines": {
"node": "5.10.1"

View File

@ -22,7 +22,7 @@ html
meta(property="fb:app_id" content="947082938740795").
<!-- Yandex.Metrika counter --> <script type="text/javascript"> (function (d, w, c) { (w[c] = w[c] || []).push(function() { try { w.yaCounter37176425 = new Ya.Metrika({ id:37176425, clickmap:true, trackLinks:true, accurateTrackBounce:true, webvisor:true, trackHash:true }); } catch(e) { } }); var n = d.getElementsByTagName("script")[0], s = d.createElement("script"), f = function () { n.parentNode.insertBefore(s, n); }; s.type = "text/javascript"; s.async = true; s.src = "https://mc.yandex.ru/metrika/watch.js"; if (w.opera == "[object Opera]") { d.addEventListener("DOMContentLoaded", f, false); } else { f(); } })(document, window, "yandex_metrika_callbacks"); </script> <noscript><div><img src="https://mc.yandex.ru/watch/37176425" style="position:absolute; left:-9999px;" alt="" /></div></noscript> <!-- /Yandex.Metrika counter -->
body.mainBody
include ./top.jade
include ./top.pug
div.middleMainContainer
img.triangle.triangle1
img.triangle.triangle2
@ -53,11 +53,11 @@ html
input(type="radio", id="radioCheckWallet", name="radioCheck", value="wallet").hide
div.radioInnerContainer
div#phoneRadio.POPradio
div.POPRadioInner.POPradioSelected
div.POPRadioInner.POPradioSelected
span.POPradioText Phone number
div#walletRadio.radioInnerContainer
div.POPradio
div.POPRadioInner.POPradioUnselected
div.POPRadioInner.POPradioUnselected
span.POPradioText Ethereum wallet
input(id="POPInputPhone" placeholder="Phone number", type="number", autofocus).POPInput.POPInputPhone
input(id="POPInputSMS" placeholder="SMS code", type="number").POPInput.POPInputSMS.hide
@ -109,5 +109,5 @@ html
div.loader-i.loader-i_right-center
div.loader-i.loader-i_left-bottom
div.loader-i.loader-i_right-bottom
include ./bottom.jade
script(type="text/javascript" src="/js/indexClient.js").
include ./bottom.pug
script(type="text/javascript" src="/js/indexClient.js").