[website] [minor] moving to framework
diff --git a/portal/templates/base.html b/portal/templates/base.html
index 701d86c..cdbc045 100644
--- a/portal/templates/base.html
+++ b/portal/templates/base.html
@@ -1,20 +1,22 @@
 {% extends "lib/website/templates/base.html" %}
 
 {% block toolbar %}
-<div class="pull-right" style="margin:4px;" id="user-tools">
-	{% if shopping_cart_enabled -%}
-	<a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i> 
-		<span class="cart-count"></span></a> |
-	{%- endif %}
-	<a id="login-link" href="login">Login</a>
-</div>
-<div class="pull-right hide" style="margin:4px;" id="user-tools-post-login">
-	<a href="account" title="My Account" id="user-full-name"></a> |
-	{% if shopping_cart_enabled -%}
-	<a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i> 
-		<span class="cart-count"></span></a> |
-	{%- endif %}
-	<a href="server.py?cmd=web_logout" title="Sign Out"><i class="icon-signout"></i></a>
+<div class="row">
+	<div class="pull-right" style="margin:4px;" id="user-tools">
+		{% if shopping_cart_enabled -%}
+		<a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i> 
+			<span class="cart-count"></span></a> |
+		{%- endif %}
+		<a id="login-link" href="login">Login</a>
+	</div>
+	<div class="pull-right hide" style="margin:4px;" id="user-tools-post-login">
+		<a href="account" title="My Account" id="user-full-name"></a> |
+		{% if shopping_cart_enabled -%}
+		<a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i> 
+			<span class="cart-count"></span></a> |
+		{%- endif %}
+		<a href="server.py?cmd=web_logout" title="Sign Out"><i class="icon-signout"></i></a>
+	</div>
 </div>
 {% endblock %}