Skip to content

Commit

Permalink
Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Riccardo Strobbia committed May 1, 2012
1 parent 4875531 commit f5b5fdb
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 6 deletions.
11 changes: 8 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -319,9 +319,14 @@ ul.auto-toc {

<p>City Helper is an html5 Web Application written to compatible with smartphones and tablets to easuly manage
your travels inside the City of Turin</p>
<div class="section" id="city-helper-is-licenced-under-share-alike-cc-lisence">
<h1>City Helper is Licenced Under Share Alike CC Lisence</h1>
<p>&lt;a rel=&quot;license&quot; href=&quot;<a class="reference external" href="http://creativecommons.org/licenses/by-sa/3.0/">http://creativecommons.org/licenses/by-sa/3.0/</a>&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width:0&quot; src=&quot;http://i.creativecommons.org/l/by-sa/3.0/80x15.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span xmlns:dct=&quot;http://purl.org/dc/terms/&quot; href=&quot;http://purl.org/dc/dcmitype/InteractiveResource&quot; property=&quot;dct:title&quot; rel=&quot;dct:type&quot;&gt;City Helper&lt;/span&gt; by &lt;a xmlns:cc=&quot;http://creativecommons.org/ns#&quot; href=&quot;http://webeventi.it&quot; property=&quot;cc:attributionName&quot; rel=&quot;cc:attributionURL&quot;&gt;Webeventi S.r.l&lt;/a&gt; is licensed under a &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-sa/3.0/&quot;&gt;Creative Commons Attribution-ShareAlike 3.0 Unported License&lt;/a&gt;.&lt;br /&gt;Based on a work at &lt;a xmlns:dct=&quot;http://purl.org/dc/terms/&quot; href=&quot;https://github.com/rogopag/cityhelper&quot; rel=&quot;dct:source&quot;&gt;github.com&lt;/a&gt;.</p>
<div class="section" id="license">
<h1>License</h1>
<p>City Helper is Licenced Under Share Alike CC Lisence</p>
</div>
<div class="section" id="usage">
<h1>USAGE</h1>
<p>City Helper is a Django back-ended Web Application written mostly in Javascript.
In order to use it on your own you should have a Django installation.</p>
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ City Helper is an html5 Web Application written to compatible with smartphones a
your travels inside the City of Turin

====================================================
City Helper is Licenced Under Share Alike CC Lisence
License
====================================================
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/80x15.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/InteractiveResource" property="dct:title" rel="dct:type">City Helper</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://webeventi.it" property="cc:attributionName" rel="cc:attributionURL">Webeventi S.r.l</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="https://github.com/rogopag/cityhelper" rel="dct:source">github.com</a>.
City Helper is Licenced Under Share Alike CC Lisence

====================================================
USAGE
Expand Down
12 changes: 12 additions & 0 deletions templates/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block addl_scripts %}
{{ block.super }}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript" charset="utf-8"></script>
{% endblock %}

{% block content %}
<div>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/80x15.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/InteractiveResource" property="dct:title" rel="dct:type">City Helper</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://webeventi.it" property="cc:attributionName" rel="cc:attributionURL">Webeventi S.r.l</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="https://github.com/rogopag/cityhelper" rel="dct:source">github.com</a>.
</div>
{% endblock %}

2 changes: 1 addition & 1 deletion views.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

class About(View):
def get(self, request):
t = loader.get_template('items.html')
t = loader.get_template('about.html')
c = RequestContext(request, {'page_title':'Data Living Turin'})
return HttpResponse(t.render(c), content_type="text/html")

Expand Down

0 comments on commit f5b5fdb

Please sign in to comment.