diff options
Diffstat (limited to 'website')
-rw-r--r-- | website/templates/.page.html.swp | bin | 16384 -> 0 bytes | |||
-rw-r--r-- | website/templates/page.html | 18 |
2 files changed, 13 insertions, 5 deletions
diff --git a/website/templates/.page.html.swp b/website/templates/.page.html.swp Binary files differdeleted file mode 100644 index 1b69427..0000000 --- a/website/templates/.page.html.swp +++ /dev/null diff --git a/website/templates/page.html b/website/templates/page.html index f4ebc50..faacbe7 100644 --- a/website/templates/page.html +++ b/website/templates/page.html @@ -1,19 +1,27 @@ {% load static %} <!DOCTYPE html> -<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> +<!--[if lt IE 9]> <html class="no-js lt-ie9"> <![endif]--> +<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> - <head> <meta charset="utf-8" /> + <!-- ADD THIS LINE TO MAKE IT WORK --> + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" > + <meta name="viewport" content="width=device-width" /> <title>Scipy India 2013 | IIT Bombay</title> + <!-- Foundation 3 for IE 8 and earlier --> + <!--[if lt IE 9]> + <link rel="stylesheet" href="{% static 'css/foundation3/foundation.css' %}"> + <link rel="stylesheet" href="{% static 'css/foundation3/app.css' %}"> + <![endif]--> + <!-- If you are using CSS version, only link these 2 files, you may add app.css to use for your overrides if you like. --> <link rel="stylesheet" href="{% static 'css/normalize.css' %}" /> <link rel="stylesheet" href="{% static 'css/foundation.css' %}" /> <link rel="stylesheet" href="{% static 'css/main.css' %}" /> <link rel="stylesheet" href="{% static 'css/override.css' %}" /> - <script src="js/vendor/custom.modernizr.js"></script> </head> @@ -21,7 +29,7 @@ <div id="header-wrapper"> <div id="header-inner"> - <nav class="top-bar"> + <ul class="top-bar"> <ul class="title-area"> <li class="name"> <h1><a href="{% url 'website:home' %}">Scipy India 2013</a></h1> @@ -61,7 +69,7 @@ </ul> <!-- /right --> </section> - </nav> + </ul> </div> <!-- /header-inner --> </div> <!-- /header-wrapper --> <div id="page-jumbo"> |