diff --git a/app/views/Categories/index.asp b/app/views/Categories/index.asp
index 167fcd7..f73aeb3 100644
--- a/app/views/Categories/index.asp
+++ b/app/views/Categories/index.asp
@@ -1,44 +1,49 @@
-
-
-
Section index
-
Categories
-
Browse post categories from ASPBlogBrainOrdure.
+
+
+
+
+
+
+
Categories
+ Browse the sections of BrainOrdure.
+
+
+
- New Category
-
+
+
+
+
+
<%
Dim categoryIter, categoryItem
Set categoryIter = categories.Iterator()
-
-If categories.Count = 0 Then
%>
-
No categories are available yet.
-<%
-Else
-%>
-
- <%
- Do While categoryIter.HasNext
- Set categoryItem = categoryIter.GetNext()
- %>
-
-
-
-
-
<%= H(categoryItem.Description) %>
-
View
-
-
+ <% If categories.Count = 0 Then %>
+
No categories are available yet.
+ <% Else %>
+
+ <%
+ Do While categoryIter.HasNext
+ Set categoryItem = categoryIter.GetNext()
+ %>
+
+
+
+
Section
+
+
<%= H(categoryItem.Description) %>
+
Browse
+
+
+
+ <%
+ Loop
+ %>
- <%
- Loop
- %>
+ <% End If %>
-<%
-End If
-%>
+