diff --git a/src/bar/templates/bar_menu.html b/src/bar/templates/bar_menu.html
index 59e0040f..f16aac08 100644
--- a/src/bar/templates/bar_menu.html
+++ b/src/bar/templates/bar_menu.html
@@ -32,19 +32,25 @@
-
+
{% block content %}
+
+
+
{% for category in categories %}
{{ category.name }}
{% for product in category.products.all %}
+ {% if product.in_stock %}
-
{{ product.name }}
- {{ product.price }} HAX
+ {{ product.name }}
+ {{ product.price }} HAX
+ {% endif %}
{% endfor %}
{% endfor %}
diff --git a/src/static_src/css/bornhack.css b/src/static_src/css/bornhack.css
index c4d50766..e99a9881 100644
--- a/src/static_src/css/bornhack.css
+++ b/src/static_src/css/bornhack.css
@@ -287,6 +287,10 @@ footer {
border-bottom: 1px solid lightgrey;
}
+body.bar-menu {
+ margin-top: 0px;
+}
+
.bar-product .name {
width: 900px;
}