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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{% extends "base.html" %}

{% load nst %}

{% block pagetitle %}bashoneliners.com{% endblock %}

{% block keywords %}{% endblock %}

{% block description %}{% endblock %}

{% block content %}

<p>
O hi, we aim to collect here <strong>*good*</strong> bash/ksh oneliners.
We are in a very very early stage of development but we will progress rapidly.
</p>

<h3>Features in the making</h3>

<ul>
    <li>Create account, login. Members will be able to post oneliners.</li>
    <li>Vote on a oneliner. Members will be able to vote up or down a oneliner.</li>
    <li>Comment on a oneliner. Members will be able to comment on oneliners and make suggestions.</li>
</ul>

<p>If you would like to participate in the development or if you would like an early member access to contribute oneliners, please let us know!</p>

<h2>latest 50</h2>

{% for oneliner in oneliners %}
<div class="oneliner">
    <pre>{% for line in oneliner.lines %}$ {{ line }}<br/>{% endfor %}</pre>

    <div class="summary">
	{{ oneliner.summary }}
    </div>

    <div class="explanation">
	{{ oneliner.explanation|nst|safe }}
    </div>

    <div class="eof">EOF</div>
</div>
{% endfor %}

{% endblock %}