~chipaca/unity-lens-video/custom-user-agent

« back to all changes in this revision

Viewing changes to templates/main/pages/sourcecode.html

  • Committer: Janos Gyerik
  • Date: 2012-04-04 13:22:47 UTC
  • Revision ID: burlyman@titan2x.com-20120404132247-2s7liq2i4e7nn8ul
minor improvement to create_user_profile signal

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
 
 
3
{% block pagetitle %}Source code{% endblock %}
 
4
 
 
5
{% block pageheader %}Source code{% endblock %}
 
6
 
 
7
{% block keywords %}{% endblock %}
 
8
 
 
9
{% block description %}{% endblock %}
 
10
 
 
11
{% block content %}
 
12
 
 
13
<p>This is an open-source project. 
 
14
If you would like to participate or contribute, 
 
15
please read the <a href="{% url oneliners.views.mission %}">mission statement</a> first, 
 
16
it is the foundation of the project.
 
17
If you are still interested, 
 
18
please contact us via the mailing list at <a href="mailto:bashoneliners@googlegroups.com">bashoneliners@googlegroups.com</a>
 
19
or privately at <a href="mailto:info@bashoneliners.com">info@bashoneliners.com</a> and let's start the conversation!</p>
 
20
 
 
21
<dl class="sourcecode">
 
22
    <dt>Project homepage</dt>
 
23
    <dd>
 
24
        <a href="https://launchpad.net/bashoneliners">https://launchpad.net/bashoneliners</a>
 
25
    </dd>
 
26
 
 
27
    <dt>Task management, upcoming features</dt>
 
28
    <dd>
 
29
        <a href="https://trello.com/board/main/4e7da3cf5a94680b35000893">https://trello.com/board/main/4e7da3cf5a94680b35000893</a>
 
30
    </dd>
 
31
 
 
32
    <dt>Mailing list address</dt>
 
33
    <dd><a href="mailto:bashoneliners@googlegroups.com">bashoneliners@googlegroups.com</a></dd>
 
34
 
 
35
    <dt>Mailing list public archive</dt>
 
36
    <dd><a href="http://groups.google.com/group/bashoneliners/topics">http://groups.google.com/group/bashoneliners/topics</a></dd>
 
37
 
 
38
    <dt>Get the source code</dt>
 
39
    <dd>
 
40
        <pre># using Bazaar (master)
 
41
bzr branch lp:bashoneliners
 
42
 
 
43
# using Subversion (read-only mirror)
 
44
svn checkout http://bashoneliners.googlecode.com/svn/trunk bashoneliners
 
45
 
 
46
# using Git (mirror)
 
47
git clone https://github.com/titan2x/bashoneliners.git
 
48
</pre>
 
49
    </dd>
 
50
 
 
51
</dl>
 
52
 
 
53
{% endblock %}