annotate bns_website/templates/feedback.html @ 105:f3a275a53bc6
Use a local version of bootstrap 1.4.0.
Twitter stopped hosting the version we were using.
author |
Brian Neal <bgneal@gmail.com> |
date |
Tue, 15 Oct 2013 20:50:29 -0500 |
parents |
1b5def90f5bf |
children |
|
rev |
line source |
bgneal@95
|
1 {% extends 'base.html' %}
|
bgneal@95
|
2 {% load core_tags %}
|
bgneal@95
|
3 {% block title %}Feedback{% endblock %}
|
bgneal@95
|
4 {% block content %}
|
bgneal@95
|
5 {% navbar 'feedback' %}
|
bgneal@95
|
6 <h1>Feedback</h1>
|
bgneal@95
|
7 <p>
|
bgneal@95
|
8 We want to hear from you! Do you want to post a mini-review of <span class="bns">Brave New Surf</span>? Do you have questions or comments about the bands, the album, the ordering process, surf music, or <a href="http://www.doublecrownrecords.com">Double Crown Records</a>? Or perhaps you just wanted to say hi? Please, leave your comments below.
|
bgneal@95
|
9 </p>
|
bgneal@95
|
10 <hr />
|
bgneal@95
|
11 <div id="disqus_thread"></div>
|
bgneal@95
|
12 <script type="text/javascript">
|
bgneal@95
|
13 var disqus_shortname = 'bravenewsurf';
|
bgneal@95
|
14 var disqus_developer = {% if debug %}1{% else %}0{% endif %};
|
bgneal@95
|
15 var disqus_identifier = '/feedback/';
|
bgneal@95
|
16 var disqus_url = 'http://bravenewsurf.com/feedback/';
|
bgneal@95
|
17 var disqus_title = 'Brave New Surf Feedback';
|
bgneal@95
|
18 (function() {
|
bgneal@95
|
19 var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
bgneal@95
|
20 dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
|
bgneal@95
|
21 (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
bgneal@95
|
22 })();
|
bgneal@95
|
23 </script>
|
bgneal@95
|
24 <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
bgneal@95
|
25 <a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
|
bgneal@95
|
26 {% endblock %}
|