summaryrefslogtreecommitdiff
path: root/static/website/templates
diff options
context:
space:
mode:
Diffstat (limited to 'static/website/templates')
-rw-r--r--static/website/templates/base.html9
-rw-r--r--static/website/templates/index.html2
2 files changed, 11 insertions, 0 deletions
diff --git a/static/website/templates/base.html b/static/website/templates/base.html
index 49c5f18..26e24c4 100644
--- a/static/website/templates/base.html
+++ b/static/website/templates/base.html
@@ -4,8 +4,17 @@
<title>Spoken-Tutorial Forums</title>
<link rel="stylesheet" href="{% static 'website/css/bootstrap.min.css' %}" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="{% static 'website/css/main.css' %}" type="text/css" media="screen" charset="utf-8" />
+ <link rel="stylesheet" href="{% static 'website/css/nice-bar.css' %}" type="text/css" media="screen" charset="utf-8" />
</head>
<body>
+ <div class="nice-bar">
+ <p class="nice-text">
+ One day CFD workshop on 22<sup>nd</sup> March 2014.
+ <a class="nice-button" href="http://cfd.fossee.in/workshop">View more</a> details about the workshop.
+ <a class="nice-button" href="http://cfdworkshop.doattend.com">Click here</a> for registration.
+ <span class="nice-close">x</span>
+ </p>
+ </div>
<div id="page-wrapper">
<div id="header-wrapper">
<div id="header-inner">
diff --git a/static/website/templates/index.html b/static/website/templates/index.html
index d543b2b..5046c13 100644
--- a/static/website/templates/index.html
+++ b/static/website/templates/index.html
@@ -1,4 +1,5 @@
{% extends 'website/templates/base.html' %}
+{% load static %}
{% block content %}
{% load count_tags %}
<h4><u>Recent Questions</u></h4>
@@ -101,4 +102,5 @@
<script>
$('span').tooltip();
</script>
+<script src="{% static 'website/js/nice-bar.js' %}"></script>
{% endblock %}