diff --git a/app/static/styles/main.css b/app/static/styles/main.css new file mode 100644 index 0000000..fd43713 --- /dev/null +++ b/app/static/styles/main.css @@ -0,0 +1,3 @@ +html { + font-size: 12px; +} diff --git a/app/swagger.yml b/app/swagger.yml index 59c19c9..fff8ef7 100644 --- a/app/swagger.yml +++ b/app/swagger.yml @@ -1,10 +1,9 @@ swagger: "2.0" info: description: >- - This A.P.I. is part of the, at time of writing, unnamed project by - Nicola Ellis. The project's code-name is Roaming Light A.P.I. - version: "0.0.1 - Alpha" - title: Return to Ritherdon Project A.P.I + The 'Return to Ritherdon' project, by Nicola Ellis, is a two year art residency at Ritherdon & Co Ltd, a manufacturer of metal enclosures based in Darwen, Lancashire U.K. This website is part of the many outcomes produced throughout the duration of project. + version: "0.1.0 - Alpha" + title: Return to Ritherdon Project A.P.I. consumes: - application/json produces: diff --git a/app/templates/favicons.html b/app/templates/favicons.html new file mode 100644 index 0000000..4f0646b --- /dev/null +++ b/app/templates/favicons.html @@ -0,0 +1 @@ + diff --git a/app/templates/home.html b/app/templates/home.html index 2db6bf0..1105b6b 100644 --- a/app/templates/home.html +++ b/app/templates/home.html @@ -1,12 +1,4 @@ - - - - - Application Home Page - - -

- Hello World! -

- - +{% extends "layout.html" %} +{% block content %} +

Return to Ritherdon Project

+{% endblock content %} diff --git a/app/templates/layout.html b/app/templates/layout.html new file mode 100644 index 0000000..bacd665 --- /dev/null +++ b/app/templates/layout.html @@ -0,0 +1,26 @@ + + + + + + {% if title %} + Return to Ritherdon Project: {{ title }} + {% else %} + Return to Riterdon Project + {% endif %} + + + + + + {% include "favicons.html" %} + + + + + {% block content %}{% endblock %} + + +