aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/templates/git_wiki/frontpage.html
blob: 0c8d245499d2e91d2ef7050e4887a04af6c07e55 (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
{% 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>
<h2><a href="/k/">Browse the knowledge!</a></h2>
<h3>Latest knowledge items</h3>
{% include "git_wiki/newitems_table" %}
<h3>Latest knowledge commits</h3>
{% include "git_wiki/shortlog_table" %}
<h3>Latest comments</h3>
{% if latest_comments %}
{% include "newcomments_table" %}
{% else %}
None yet!
{% endif %}

{% endblock %}