File tree Expand file tree Collapse file tree 4 files changed +20
-24
lines changed
Expand file tree Collapse file tree 4 files changed +20
-24
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ var $navbar = $('.navbar');
1111$navbar . find ( 'li' ) . removeClass ( 'active' ) ;
1212$navbar . find ( 'a[href="' + global . location . pathname + '"]' )
1313 . parent ( ) . addClass ( 'active' ) ;
14+ $ ( '#layout-header' ) . hide ( ) ;
15+ $ ( '#invite-box' ) . height ( $ ( '#signup-box' ) . height ( ) ) ;
1416
1517// Third party
1618require ( 'ui-bootstrap' ) ;
Original file line number Diff line number Diff line change 11{% extends "base.html" %}
22
33{% block bodyContent %}
4- < div class ="row-fluid ">
5- < div class ="span12 ">
6- {% for message in messages %}
7- < div class ="alert alert-warning "> {{ message|raw }}</ div >
8- {% endfor %}
4+ {% if messages.length %}
5+ < div class ="row-fluid ">
6+ < div class ="span12 ">
7+ {% for message in messages %}
8+ < div class ="alert alert-warning "> {{ message|raw }}</ div >
9+ {% endfor %}
10+ </ div >
911 </ div >
10- </ div >
12+ {% endif %}
1113
1214 < div class ="row-fluid ">
1315 < div class ="span12 ">
Original file line number Diff line number Diff line change 1818 </ span >
1919 </ div >
2020 </ div >
21+
2122 {% for messages in flash %}
2223 {% for message in messages %}
23- < div class ="alert alert-info "> {{ message|raw }}</ div >
24+ < div class ="alert alert-info "> {{ message|raw }}</ div >
2425 {% endfor %}
2526 {% endfor %}
27+
2628 < div id ="dashboard " style ="display:none ">
2729 < div >
2830 < div class ="row-fluid ">
2931 < div class ="span12 dashboard-section ">
3032 {% if !currentUser %}
31- < div class ='StriderBlock_LoggedOutFillContent '> {% pluginblock LoggedOutFillContent %}
32- {% include "partials/errors.html" %}
33- {% include "partials/loginform.html" %}
34- {% endpluginblock %}</ div >
35-
36- < script >
37- $ ( document ) . ready ( function ( ) {
38- $ ( '#layout-header' ) . hide ( ) ;
39- $ ( '#invite-box' ) . height ( $ ( '#signup-box' ) . height ( ) ) ;
40- } ) ;
41- </ script >
42-
33+ < div class ='StriderBlock_LoggedOutFillContent '>
34+ {% pluginblock LoggedOutFillContent %}
35+ {% include "partials/errors.html" %}
36+ {% include "partials/loginform.html" %}
37+ {% endpluginblock %}
38+ </ div >
4339 {% endif %}
40+
4441 {% if currentUser && jobs.yours.length < 1 %}
4542 < div class ="alert alert-info no-projects " data-test ="no-personal-projects ">
4643 < h3 > You don't have any projects configured.</ h3 >
Original file line number Diff line number Diff line change 11< div class ="row-fluid ">
2- <!-- hack since offsetN doesn't work with first element -->
3- < div class ="span2 ">
4-
5- </ div >
6-
72 < div class ="span8 ">
83 < div class ="well ">
94 < h3 > Brilliant Continuous Deployment.</ h3 >
You can’t perform that action at this time.
0 commit comments