diff --git a/OurUmbraco.Site/Views/Search/Search.aspx b/OurUmbraco.Site/Views/Search/Search.aspx
index 875f8af9..f0209da5 100644
--- a/OurUmbraco.Site/Views/Search/Search.aspx
+++ b/OurUmbraco.Site/Views/Search/Search.aspx
@@ -21,12 +21,7 @@
<%=Model.Results.SearchTerm %>
-
-
-
+
<% if (Context.IsDebuggingEnabled)
{ %>
@@ -36,28 +31,36 @@
Order by: <%= Model.Results.OrderBy %>
Time elapsed: <%= Model.Results.Totalmilliseconds %>
-
- <% } %>
+
+ <% } %>
- <% if (Request.QueryString["cat"] == "project")
- { %>
- Options:
- show last updated first
- <% } %>
-
- <% } %>
+
+
+ <% if(Request.QueryString["cat"] == "forum")
+ { %>
+
+ <% } %>
+
+<%-- <% if (Request.QueryString["cat"] == "project")
+ { %>
+
+ show last updated first
+
+ <% } %>--%>
+
+
+
<% if (Model.Results.SearchResults.Any() == false)
{ %>
diff --git a/build/RunGulp.bat b/build/RunGulp.bat
new file mode 100644
index 00000000..12c221c2
--- /dev/null
+++ b/build/RunGulp.bat
@@ -0,0 +1,35 @@
+@ECHO OFF
+SET release=%1
+ECHO Installing Npm NuGet Package
+
+SET nuGetFolder=%CD%\..\packages\
+ECHO Configured packages folder: %nuGetFolder%
+ECHO Current folder: %CD%
+
+%CD%\..\.nuget\NuGet.exe install Npm.js -OutputDirectory %nuGetFolder% -Verbosity quiet
+
+for /f "delims=" %%A in ('dir %nuGetFolder%node.js.* /b') do set "nodePath=%nuGetFolder%%%A\"
+for /f "delims=" %%A in ('dir %nuGetFolder%npm.js.* /b') do set "npmPath=%nuGetFolder%%%A\tools\"
+
+ECHO Temporarily adding Npm and Node to path
+SET oldPath=%PATH%
+
+path=%npmPath%;%nodePath%;%PATH%
+
+ECHO %path%
+
+SET buildFolder=%CD%
+
+ECHO Change directory to %CD%\..\OurUmbraco.Client\
+CD %CD%\..\OurUmbraco.Client\
+
+ECHO Do npm install and the gulp build
+call npm install
+call npm install -g install gulp -g --quiet
+call gulp
+
+ECHO Reset path to what it was before
+path=%oldPath%
+
+ECHO Move back to the build folder
+CD %buildFolder%
\ No newline at end of file