Skip to content

Commit

Permalink
[2375] Add the about page with new design
Browse files Browse the repository at this point in the history
  • Loading branch information
aron committed Jun 18, 2012
1 parent cb090e3 commit 406df68
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
23 changes: 23 additions & 0 deletions ckan/templates/home/about.html
@@ -0,0 +1,23 @@
{% extends "page.html" %}

{% block title %}{{ _('About') }} - {{ super() }}{% endblock %}

{% block breadcrumb %}
<ol class="breadcrumb">
<li class="home hide-text"><a class="ckan-icon ckan-icon-bookmark" href="{{ h.url('home') }}">Home</a></li>
<li class="current">{{ h.nav_link(_('About'), controller='home', action='about') }}</li>
</ol>
{% endblock %}

{% block primary %}
<article class="module">
<div class="content">
<h1 class="page-heading">{{ _('About') }}</h1>
{% block about %}
{% snippet 'home/snippets/about_text.html' %}
{% endblock %}
</div>
</article>
{% endblock %}

{% block sidebar %}{% endblock %}
20 changes: 20 additions & 0 deletions ckan/templates/home/snippets/about_text.html
@@ -0,0 +1,20 @@
{% trans %}
<p>CKAN, is the world’s leading open-source data portal platform.</p>

<p>CKAN is a complete out-of-the-box software solution that makes data
accessible and usable – by providing tools to streamline publishing, sharing,
finding and using data (including storage of data and provision of robust data
APIs). CKAN is aimed at data publishers (national and regional governments,
companies and organizations) wanting to make their data open and available.</p>

<p>CKAN, is used by governments and user groups worldwide and powers a variety
of official and community data portals including portals for local, national
and international government, such as the UK’s <a href="http://data.gov.uk">data.gov.uk</a> and the
European Union’s <a href="http://publicdata.eu/">publicdata.eu</a>, the Brazilian <a href="http://dados.gov.br/">dados.gov.br</a>, Dutch and
Netherland government portals, as well as city and municipal sites in the US,
UK, Argentina, Finland and elsewhere.</p>

<p>CKAN: <a href="http://ckan.org/">http://ckan.org/</a><br />
CKAN Tour: <a href="http://ckan.org/tour/">http://ckan.org/tour/</a><br />
Features overview: <a href="http://ckan.org/features/">http://ckan.org/features/</a></p>
{% endtrans %}

0 comments on commit 406df68

Please sign in to comment.