aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/templates/git_wiki/frontpage.html
blob: 897bf8b5486c8d8fd9a85953dd8dbc65564a4775 (plain)
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
{% extends "git_wiki/base.html" %}

{% block title %}Knowledge Repository{% endblock %}

{% block right_stuff %}
<br />
Get some knowledge: <br />
 &nbsp; - <a href="http://wikipedia.org"> wikipedia</a><br />
 &nbsp; - <a href="http://archive.org"> internet archive</a><br />
 &nbsp; - <a href="http://mathworld.com"> mathworld</a>
{% endblock %}

{% block content %}
<div class="notice">
<center><b>This site is under active development!</b></center>
<p />There are undoubtedly bugs, errors, aesthetic travesties, ommissions, etc.
If you're curious you can track my work in the <a href="/code">code</a> section.
</div>

<div class="right_stuff">
For more recent content see the <a href="/timeline/">timeline</a>
</div>

<h3>Latest knowledge</h3>
{% if latest_knowledge %}
{% else %}
None yet!
{% endif %}
<hr />
<h3>Latest comments</h3>
{% if latest_comments %}
{% else %}
None yet!
{% endif %}

{% endblock %}