From c8057e7c1c3d770d5a7a97f4745caa46d045bcbb Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Mon, 14 Aug 2017 14:52:45 +1000 Subject: Added links page --- project/assets/css/default.css | 6 +- project/assets/css/links.css | 43 +++++ project/complexity.yml | 1 + project/templates/base.html | 1 + project/templates/links.html | 383 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 432 insertions(+), 2 deletions(-) create mode 100644 project/assets/css/links.css create mode 100644 project/templates/links.html diff --git a/project/assets/css/default.css b/project/assets/css/default.css index dff3059..fb1de72 100644 --- a/project/assets/css/default.css +++ b/project/assets/css/default.css @@ -79,7 +79,7 @@ p { nav ul { display: table; - width: 90%; + width: 100%; margin: auto; padding: 0; } @@ -89,9 +89,10 @@ nav ul li { text-align: center; margin: 0; padding: 0; - width: 33.33333333%; + width: 25%; } +/* nav ul li:first-child { text-align: left; } @@ -99,5 +100,6 @@ nav ul li:first-child { nav ul li:last-child { text-align: right; } +*/ diff --git a/project/assets/css/links.css b/project/assets/css/links.css new file mode 100644 index 0000000..2dbf428 --- /dev/null +++ b/project/assets/css/links.css @@ -0,0 +1,43 @@ + + +div.colcontain { + margin: auto; +} + + +div.colleft { + float: left; + width: 50%; +} + + +div.colright { + float: right; + width: 50%; +} + + +div.content { + margin: auto; + text-align: center; +} + + +h5 { + padding: 0; + margin: 0.5em 0em 0.5em 0em; +} + + +ul { + list-style-type: none; + margin: 0em 0em 2em 0em; + padding: 0; +} + + +ul li { + margin: 0.5em 0em 0.5em 0em; + padding: 0; +} + diff --git a/project/complexity.yml b/project/complexity.yml index 9ee1cb8..ee8bc36 100644 --- a/project/complexity.yml +++ b/project/complexity.yml @@ -18,4 +18,5 @@ unexpanded_templates: - "fltkada.html" - "sunset.html" - "sokoban.html" + - "links.html" diff --git a/project/templates/base.html b/project/templates/base.html index a23b8ab..d4ef561 100644 --- a/project/templates/base.html +++ b/project/templates/base.html @@ -16,6 +16,7 @@
  • Index
  • About
  • Git
  • +
  • Links

  • diff --git a/project/templates/links.html b/project/templates/links.html new file mode 100644 index 0000000..b0edeaa --- /dev/null +++ b/project/templates/links.html @@ -0,0 +1,383 @@ + +{% extends "base.html" %} + + + +{% block title %}Links{% endblock %} + + + +{% block style %} + +{% endblock %} + + + +{% block content %} + +

    Links

    + +

    These are some of the websites that found their way into my bookmarks over the years. Quite a few years, +since some of these require the Wayback Machine to view now. Posted because if I find these pages interesting, +chances are someone else might too. Note that this list is not anywhere near exhaustive.

    + +
    +
    +
    +
    Blogs
    + + +
    Books
    + + +
    Computer Hardware
    + + +
    DIY
    + + +
    Electronics
    + + +
    Fitness and Cycling
    + + +
    Food
    + + +
    Foreign Languages
    + + +
    Gaming
    + + +
    General Computing
    + +
    +
    +
    +
    +
    Math and Logic
    + + +
    Operating Systems
    + + +
    Other
    + + +
    Politics and Law
    + + +
    Programming
    + + +
    Science
    + + +
    Travel and Transportation
    + +
    +
    +
    + +{% endblock %} + + -- cgit