From 3a1a7a4d62dce554436aa8c23e980204a481c7b4 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 5 Feb 2021 17:24:33 +1100 Subject: Added compsci tag --- project/complexity.yml | 1 + project/context/articles.json | 4 ++-- project/context/tags.json | 1 + project/templates/tags/compsci.html | 34 ++++++++++++++++++++++++++++++++++ project/templates/tags/gaming.html | 34 ---------------------------------- 5 files changed, 38 insertions(+), 36 deletions(-) create mode 100644 project/templates/tags/compsci.html delete mode 100644 project/templates/tags/gaming.html diff --git a/project/complexity.yml b/project/complexity.yml index 22f8667..1a3b01a 100644 --- a/project/complexity.yml +++ b/project/complexity.yml @@ -25,6 +25,7 @@ unexpanded_templates: - "tags.html" - "tags/application.html" - "tags/binding.html" + - "tags/compsci.html" - "tags/copyright.html" - "tags/esoteric.html" - "tags/languages.html" diff --git a/project/context/articles.json b/project/context/articles.json index feb5d44..b9a3977 100644 --- a/project/context/articles.json +++ b/project/context/articles.json @@ -3,7 +3,7 @@ { "title": "Packrat Parser Combinator Library", "anchor": "/packrat.html", - "taglist": ["library", "programming"], + "taglist": ["compsci", "library", "programming"], "postdate": "2/2/2021" }, { @@ -15,7 +15,7 @@ { "title": "D, Parasail, Pascal, and Rust vs The Steelman", "anchor": "/steelman.html", - "taglist": ["languages"], + "taglist": ["compsci", "languages"], "postdate": "29/10/2017" }, { diff --git a/project/context/tags.json b/project/context/tags.json index 14e22a1..52088df 100644 --- a/project/context/tags.json +++ b/project/context/tags.json @@ -1,6 +1,7 @@ [ "application", "binding", + "compsci", "copyright", "esoteric", "languages", diff --git a/project/templates/tags/compsci.html b/project/templates/tags/compsci.html new file mode 100644 index 0000000..c39f7f1 --- /dev/null +++ b/project/templates/tags/compsci.html @@ -0,0 +1,34 @@ + +{% extends "base.html" %} + + + +{% block title %}Compsci Tag{% endblock %} + + + +{% block style %} + +{% endblock %} + + + +{% block content %} + +

Tag: Compsci

+ + + +{% endblock %} + + diff --git a/project/templates/tags/gaming.html b/project/templates/tags/gaming.html deleted file mode 100644 index 4520655..0000000 --- a/project/templates/tags/gaming.html +++ /dev/null @@ -1,34 +0,0 @@ - -{% extends "base.html" %} - - - -{% block title %}Gaming Tag{% endblock %} - - - -{% block style %} - -{% endblock %} - - - -{% block content %} - -

Tag: Gaming

- - - -{% endblock %} - - -- cgit