diff options
author | Jed Barber <jjbarber@y7mail.com> | 2017-05-08 23:43:47 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2017-05-08 23:43:47 +1000 |
commit | 6882b69ac893660dc3547ace19e9b0911cdf06cf (patch) | |
tree | 24b310816fdce0058b484c20a68da8c917de2325 /project | |
parent | 3e4ca2ab20f205c81a734c5f8b9177992ee2737a (diff) |
Added dates for articles, updated Adapad article with FLTKAda split
Diffstat (limited to 'project')
-rw-r--r-- | project/assets/css/default.css | 5 | ||||
-rw-r--r-- | project/assets/css/index.css | 17 | ||||
-rw-r--r-- | project/templates/adapad.html | 8 | ||||
-rw-r--r-- | project/templates/grasp.html | 1 | ||||
-rw-r--r-- | project/templates/index.html | 15 | ||||
-rw-r--r-- | project/templates/stvcount.html | 1 | ||||
-rw-r--r-- | project/templates/thue2a.html | 1 |
7 files changed, 44 insertions, 4 deletions
diff --git a/project/assets/css/default.css b/project/assets/css/default.css index 38cc432..84278f5 100644 --- a/project/assets/css/default.css +++ b/project/assets/css/default.css @@ -32,6 +32,11 @@ h4 { } +h5 { + padding-top: 2em; +} + + p { margin-top: 2em; margin-bottom: 2em; diff --git a/project/assets/css/index.css b/project/assets/css/index.css index 7257410..65676d1 100644 --- a/project/assets/css/index.css +++ b/project/assets/css/index.css @@ -10,3 +10,20 @@ ul.index { } +ul.index li { + margin-top: 0.5em; + margin-bottom: 1.5em; +} + + +.post { + font-size: .83em; +} + + +.update { + font-size: .83em; + color: red; +} + + diff --git a/project/templates/adapad.html b/project/templates/adapad.html index be25618..bc7912e 100644 --- a/project/templates/adapad.html +++ b/project/templates/adapad.html @@ -10,6 +10,14 @@ {% block content %} <h4>Adapad</h4> +<h5>8/5/2017</h5> + +<p>The Ada binding for FLTK has now been moved to its own <a href="/cgit/cgit.cgi/fltkada.git/" target="_blank">repository</a>. +Installing it is required to build and use Adapad, naturally. Both repositories are set up to use the GNAT +Project Manager build tools to handle all that, with any further specific details in each project's readme.</p> + + +<h5>2/1/2017</h5> <p>I have a soft spot for the <a href="http://www.adaic.org/" target="_blank">Ada programming language</a>. Strong typing, built in concurrency, readable syntax, systems support, real-time support, a general diff --git a/project/templates/grasp.html b/project/templates/grasp.html index 534ecbe..54e625a 100644 --- a/project/templates/grasp.html +++ b/project/templates/grasp.html @@ -10,6 +10,7 @@ {% block content %} <h4>Grasp Interpreter</h4> +<h5>1/1/2017</h5> <p>Like Lisp, the esoteric programming language <a href="http://esolangs.org/wiki/Grasp" target="_blank"> Grasp</a> is a homoiconic language that exclusively uses a single datatype. Except instead of lists, it diff --git a/project/templates/index.html b/project/templates/index.html index 4652567..5c7af6a 100644 --- a/project/templates/index.html +++ b/project/templates/index.html @@ -16,10 +16,17 @@ {% block content %} <ul class="index"> - <li><a href="/stvcount.html">Single Transferable Vote Counter</a></li> - <li><a href="/adapad.html">Adapad</a></li> - <li><a href="/grasp.html">Grasp Interpreter</a></li> - <li><a href="/thue2a.html">Thue Version 2a</a></li> + <li><a href="/stvcount.html">Single Transferable Vote Counter</a><br> + <span class="post">(Posted 19/2/2017)</span></li> + + <li><a href="/adapad.html">Adapad</a><br> + <span class="update">(Updated 8/5/2017)</span></li> + + <li><a href="/grasp.html">Grasp Interpreter</a><br> + <span class="post">(Posted 1/1/2017)</span></li> + + <li><a href="/thue2a.html">Thue Version 2a</a><br> + <span class="post">(Posted 1/1/2017)</span></li> </ul> {% endblock %} diff --git a/project/templates/stvcount.html b/project/templates/stvcount.html index 39f87d1..c2533fb 100644 --- a/project/templates/stvcount.html +++ b/project/templates/stvcount.html @@ -16,6 +16,7 @@ {% block content %} <h4>Single Transferable Vote Counter</h4> +<h5>19/2/2017</h5> <p>To give an incredibly brief summary of <a href="https://en.wikipedia.org/wiki/Parliament_of_Australia" target="_blank">Australia's political system</a>, both the Federal Parliament and most of the State diff --git a/project/templates/thue2a.html b/project/templates/thue2a.html index 5675cd7..f4dac4f 100644 --- a/project/templates/thue2a.html +++ b/project/templates/thue2a.html @@ -10,6 +10,7 @@ {% block content %} <h4>Thue Version 2a</h4> +<h5>1/1/2017</h5> <p><a href="http://esolangs.org/wiki/Thue" target="_blank">Thue</a> is an esoteric programming language based on unrestricted grammars. A Thue program consists of a number of rules detailing |