Commit e642f6cccb182080366d5e75ef73d3dcf15d5c6c

  • avatar
  • arvind
  • Mon Sep 30 13:09:46 IST 2013
Style changes and adding bootstrap for the directory page
  
11<!doctype html>
22<html>
3<head>
34<title>Directory of Alipi</title>
5<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
6<style>
7.renarration-item-wrapper{
8border: 2px solid #DDDDDD;
9height: auto;
10width: auto;
11}
12</style>
13</head>
414<body>
5<div>
15<div class="container">
616<p>List of links narrated</p>
717{% if name %}
818{% for i in name %}
919{% if i['about'] != 'undefined' %}
20<div class="renarration-item-wrapper">
1021<p><a href="{{i['about']}}">{{ i['about'] }}</a> in <a href="http://y.a11y.in/web?foruri={{ mymodule(i['about']) }}&lang={{i['lang']}}&interactive=1">{{i['lang']}}</a></p>
1122<p style="padding:5px">Narrations contributed at:</p>
1223{% for x in mylist(myset(i['na'])) %}
1324<p><a href="{{x}}" style="padding:5px">{{x}}</a></p>
1425{% endfor %}
1526{% endif %}
27</div>
1628{% endfor %}
1729{% else %}
18<p>Hello world</p>
30<p>The directory listing is empty. </p>
1931{% endif %}
2032</div>
2133</body>