# HG changeset patch # User Brian Neal # Date 1323913952 21600 # Node ID 1b5def90f5bf5f611b67c6fde59eb19b4e973e6a # Parent 48757f4e598b322ee73d03d2755e398959ca1962 Created a feedback page with Disqus comments. diff -r 48757f4e598b -r 1b5def90f5bf bns_website/static/css/base.css --- a/bns_website/static/css/base.css Tue Nov 29 19:05:30 2011 -0600 +++ b/bns_website/static/css/base.css Wed Dec 14 19:52:32 2011 -0600 @@ -2,6 +2,14 @@ padding-top: 60px; background-color: #d9ecfa; } +a { + color: #00aab4; + text-decoration: none; +} +a:hover { + color: #00aab4; + text-decoration: underline; +} .social-sharing { margin-top: 1.5em; } diff -r 48757f4e598b -r 1b5def90f5bf bns_website/templates/core/navbar_tag.html --- a/bns_website/templates/core/navbar_tag.html Tue Nov 29 19:05:30 2011 -0600 +++ b/bns_website/templates/core/navbar_tag.html Wed Dec 14 19:52:32 2011 -0600 @@ -11,6 +11,7 @@ Listen Watch Buy +Feedback diff -r 48757f4e598b -r 1b5def90f5bf bns_website/templates/feedback.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bns_website/templates/feedback.html Wed Dec 14 19:52:32 2011 -0600 @@ -0,0 +1,26 @@ +{% extends 'base.html' %} +{% load core_tags %} +{% block title %}Feedback{% endblock %} +{% block content %} +{% navbar 'feedback' %} +

Feedback

+

+We want to hear from you! Do you want to post a mini-review of Brave New Surf? Do you have questions or comments about the bands, the album, the ordering process, surf music, or Double Crown Records? Or perhaps you just wanted to say hi? Please, leave your comments below. +

+
+
+ + +blog comments powered by Disqus +{% endblock %} diff -r 48757f4e598b -r 1b5def90f5bf bns_website/urls.py --- a/bns_website/urls.py Tue Nov 29 19:05:30 2011 -0600 +++ b/bns_website/urls.py Wed Dec 14 19:52:32 2011 -0600 @@ -29,6 +29,9 @@ url(r'^buy/$', TemplateView.as_view(template_name="buy.html"), name="buy"), + url(r'^feedback/$', + TemplateView.as_view(template_name="feedback.html"), + name="feedback"), url(r'^admin/doc/', include('django.contrib.admindocs.urls')), url(r'^admin/', include(admin.site.urls)), )