diff --git a/resources/views/about.html b/resources/views/about.html
index 586d9ed..747ebf6 100644
--- a/resources/views/about.html
+++ b/resources/views/about.html
@@ -1,4 +1,4 @@
-{% extends "blarg/views/templates/base.html" %}
+{% extends "base.html" %}
{% block content %}
diff --git a/resources/views/auth/login.html b/resources/views/auth/login.html
index 9c0b5a0..cb78531 100644
--- a/resources/views/auth/login.html
+++ b/resources/views/auth/login.html
@@ -1,16 +1,16 @@
-{% extends "blarg/views/templates/base.html" %}
+{% extends "../base.html" %}
{% block content %}
Login
- {% if login-error %}
-
{{login-error}}
+ {% if loginError %}
+
{{ loginError }}
{% endif %}
-
diff --git a/resources/views/base.html b/resources/views/base.html
index 0444f95..7ab96a0 100644
--- a/resources/views/base.html
+++ b/resources/views/base.html
@@ -3,33 +3,34 @@
-
blarg.ca{{html-title|default:""|safe}}
-
-
-
-
-
-{% if user-id %}
-
-
+
blarg.ca{{ htmlTitle|nonull}}
+
+
+ {{ stylesheet('/css/bootstrap.min.css') }}
+ {{ stylesheet('/css/bootstrap-markdown.css') }}
+ {{ stylesheet('/css/prettify.css') }}
+{% if userId %}
+ {{ stylesheet('/css/select2.css') }}
+ {{ stylesheet('/css/bootstrap-combobox.css') }}
{% endif %}
-
-
+ {{ stylesheet('/css/screen.css') }}
+
-
-
-
-
-
-
-{% if user-id %}
-
-
-
+
+ {{ javascript('//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js') }}
+ {{ javascript('/js/bootstrap.min.js') }}
+ {{ javascript('/js/markdown.js') }}
+ {{ javascript('/js/to-markdown.js') }}
+ {{ javascript('/js/bootstrap-markdown.js') }}
+ {{ javascript('/js/prettify.js') }}
+{% if userId %}
+ {{ javascript('/js/select2.min.js') }}
+ {{ javascript('/js/bootstrap-combobox.js') }}
+ {{ javascript('/js/modals.js') }}
{% endif %}
-
+ {{ javascript('/js/site.js') }}
@@ -37,35 +38,35 @@
{% if breadcrumbs %}
-{% include "blarg/views/templates/breadcrumbs.html" %}
+{% include "breadcrumbs.html" %}
{% endif %}
@@ -76,11 +77,11 @@