diff --git a/apps/userprofile/templates/userprofile/profile.html b/apps/userprofile/templates/userprofile/profile.html new file mode 100644 index 0000000..f6f7882 --- /dev/null +++ b/apps/userprofile/templates/userprofile/profile.html @@ -0,0 +1,69 @@ +{% extends "base.html" %} + +{% comment %} + Look at base.html and look at what content blocks are available (ctrl+f block). Inherit any you want to override. The main two are {% block canvas %} and {% block content %}. Canvas contains everything in between the navbar and the footer, and content contains the middle column. + + Put static files (css, js, and images) into the appropriate folder in apps/theme/static/ + I have a simple file in there as an example that I'm using to style this template +{% endcomment %} + +{% block meta_title %} + Profile +{% endblock %} + +{% block extra_css %} + +{% endblock %} + + +{% block content %} +
+{% endblock %} \ No newline at end of file diff --git a/apps/userprofile/templates/userprofile/profilelist.html b/apps/userprofile/templates/userprofile/profilelist.html new file mode 100644 index 0000000..69f117d --- /dev/null +++ b/apps/userprofile/templates/userprofile/profilelist.html @@ -0,0 +1,44 @@ +{% extends "base.html" %} + +{% comment %} + Look at base.html and look at what content blocks are available (ctrl+f block). Inherit any you want to override. The main two are {% block canvas %} and {% block content %}. Canvas contains everything in between the navbar and the footer, and content contains the middle column. + + Put static files (css, js, and images) into the appropriate folder in apps/theme/static/ + I have a simple file in there as an example that I'm using to style this template +{% endcomment %} + +{% block meta_title %} + Profile +{% endblock %} + +{% block extra_css %} + +{% endblock %} + + +{% block content %} +Bio or headline information for profile
+Bio or headline information for profile
+Bio or headline information for profile
+