diff --git a/web/themes/asc_bootstrap/assets/sass/layout/_aside.scss b/web/themes/asc_bootstrap/assets/sass/layout/_aside.scss index e358f6db8362cab4434e0fb7807dacdf20b9b6e6..a0c84e784f68152a082e1bdc82378d20bb6a420c 100644 --- a/web/themes/asc_bootstrap/assets/sass/layout/_aside.scss +++ b/web/themes/asc_bootstrap/assets/sass/layout/_aside.scss @@ -12,7 +12,7 @@ aside { } .region-sidebar-second { - padding: 5px 15px; + padding: 5px 15px 20px; background: #efefef; min-height: $full; } diff --git a/web/themes/asc_bootstrap/css/style.css b/web/themes/asc_bootstrap/css/style.css index 2eb01116218ded86eec1cebd9a1734fa7312e42c..6caab50c777cdb0a5651835aa5fd3c6486740c8a 100644 --- a/web/themes/asc_bootstrap/css/style.css +++ b/web/themes/asc_bootstrap/css/style.css @@ -1958,7 +1958,7 @@ aside img { } /* line 14, ../assets/sass/layout/_aside.scss */ aside .region-sidebar-second { - padding: 5px 15px; + padding: 5px 15px 20px; background: #efefef; min-height: 100%; } diff --git a/web/themes/asc_bootstrap/templates/system/includes/_footer.twig b/web/themes/asc_bootstrap/templates/system/includes/_footer.twig index 28218959cfb19c9b87ab1ff54f68a75984d22318..2212a60c3b8dc49e13fcea787570af3a9f289090 100644 --- a/web/themes/asc_bootstrap/templates/system/includes/_footer.twig +++ b/web/themes/asc_bootstrap/templates/system/includes/_footer.twig @@ -51,9 +51,15 @@ </a> </li> <li> - <a href="/saml_login"> - LOGIN - </a> + {% if logged_in %} + <a href="/logout"> + LOGOUT: {{ user.displayname }} + </a> + {% else %} + <a href="/saml_login"> + LOGIN + </a> + {% endif %} </li> </ul> </div> @@ -64,7 +70,7 @@ </div> <div class="col-xs-12 col-md-6 sf-col2"> - <p><small><i>Designed and built by <a href=https://asctech.osu.edu/services/web-services">ASCTech Web Services</a></i></small></p> + <p><small><i>Designed and built by <a href="https://asctech.osu.edu/services/web-services">ASCTech Web Services</a></i></small></p> </div> </div> </div>