diff options
Diffstat (limited to '')
-rw-r--r-- | app.js | 2 | ||||
-rw-r--r-- | views/home.ejs | 5 |
2 files changed, 5 insertions, 2 deletions
@@ -10,7 +10,7 @@ var express = require('express') /** * App configuration */ -var port = process.env.PORT || 8000 +var port = process.env.PORT || 8001 , env = process.env.NODE_ENV || 'development' , config = require('./config/config')[env] , auth = require('./config/middlewares/authorization'); diff --git a/views/home.ejs b/views/home.ejs index 444af61..54c19e6 100644 --- a/views/home.ejs +++ b/views/home.ejs @@ -1,4 +1,5 @@ <% include header %> +<link rel="stylesheet" href="/css/devanim.css"> </head> <body> @@ -109,7 +110,9 @@ </div> </div> <div class="span5 sectionright"> - <a href="https://itunes.apple.com/us/genre/ios-finance/id6015?mt=8"><img src="/img/iph.png" class="apple"></a> + <a href="https://itunes.apple.com/us/genre/ios-finance/id6015?mt=8"> + <img src="/img/iph.png" class="apple"> + </a> <a href="https://play.google.com/store"><img src="/img/android.png" id="android" class="infoimg"></a> <a href="http://www.windowsphone.com/nb-no/store"><img src="/img/win.png" id="windows" class="infoimg"></a> </div> |