diff options
Diffstat (limited to 'static/website/templates')
-rw-r--r-- | static/website/templates/base.html | 12 | ||||
-rw-r--r-- | static/website/templates/user-questions.html | 2 | ||||
-rw-r--r-- | static/website/templates/user-replies.html | 2 |
3 files changed, 12 insertions, 4 deletions
diff --git a/static/website/templates/base.html b/static/website/templates/base.html index dccb556..49c5f18 100644 --- a/static/website/templates/base.html +++ b/static/website/templates/base.html @@ -20,6 +20,7 @@ <span class="icon-bar"></span> </button> <a class="navbar-brand" href="{% url 'website:home' %}"> + <img id="logo" src="http://spoken-tutorial.org/sites/all/themes/spoken/images/logo.png"> Spoken Tutorial Forums </a> </div> <!-- /.navbar-header --> @@ -85,11 +86,18 @@ </div> <!-- /#content-inner --> </div> <!-- /#content-wrapper --> - <div id="footer-wrapper"> - <div id="footer-inner" class="container"> + <div id="footer-wrapper" class="container"> + <div id="footer-inner" class="col-lg-12 col-md-12 col-sm-12"> <div class="pull-left"> + <!--[if lte IE 8]><span style="filter: FlipH; -ms-filter: "FlipH"; display: inline-block;"><![endif]--> + <span style="-moz-transform: scaleX(-1); -o-transform: scaleX(-1); -webkit-transform: scaleX(-1); transform: scaleX(-1); display: inline-block;"> + <a href="http://www.gnu.org/copyleft/" target="_blank">©</a> + </span> + <!--[if lte IE 8]></span><![endif]--> + 2013 <a href="http://spoken-tutorial.org" target="_blank">spoken-tutorial.org</a> </div> <div class="pull-right"> + Developed at IIT Bombay </div> </div> <!-- /#footer-inner --> </div> <!-- /#footer-wrapper --> diff --git a/static/website/templates/user-questions.html b/static/website/templates/user-questions.html index e3d2ab6..69b3b4b 100644 --- a/static/website/templates/user-questions.html +++ b/static/website/templates/user-questions.html @@ -5,7 +5,7 @@ {% for question in questions %} <div class="my-question"> <span class="title"> - {{ question.title }} + <a href="{% url 'website:get_question' question.id %}">{{ question.title }}</a> </span> <br> <span class="date"> diff --git a/static/website/templates/user-replies.html b/static/website/templates/user-replies.html index c31b854..8be85fa 100644 --- a/static/website/templates/user-replies.html +++ b/static/website/templates/user-replies.html @@ -5,7 +5,7 @@ {% for reply in replies%} <div class="my-reply"> <span class="body"> - {{ reply.body|safe }} + <a href="{% url 'website:get_question' reply.question.id %}#reply{{ reply.id }}">{{ reply.body|safe }}</a> </span> <br> <span class="date"> |