From f9b18637cf7bd4c2b398218d51ba104dc5f05d83 Mon Sep 17 00:00:00 2001 From: Ethan Paul <24588726+enpaul@users.noreply.github.com> Date: Fri, 16 Apr 2021 00:57:43 -0400 Subject: [PATCH] Add initial build tooling skeleton --- build.py | 0 config.yaml | 10 +++ error/400.html | 0 error/404.html | 0 error/500.html | 0 error/502.html | 0 explore/index.html | 176 -------------------------------------- pyproject.toml | 15 ++++ templates/index.html.j2 | 80 +++++++++++++++++ templates/nginx.conf.d.j2 | 0 templates/post.html.j2 | 0 11 files changed, 105 insertions(+), 176 deletions(-) create mode 100644 build.py create mode 100644 config.yaml create mode 100644 error/400.html create mode 100644 error/404.html create mode 100644 error/500.html create mode 100644 error/502.html delete mode 100644 explore/index.html create mode 100644 pyproject.toml create mode 100644 templates/index.html.j2 create mode 100644 templates/nginx.conf.d.j2 create mode 100644 templates/post.html.j2 diff --git a/build.py b/build.py new file mode 100644 index 0000000..e69de29 diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..b7669bf --- /dev/null +++ b/config.yaml @@ -0,0 +1,10 @@ +--- +base_url: https://allaroundhere.org/explore/ +path: + output: explore +posts: + - title: A 1:1 recreation of the set for Star Trek the Original Series + slug: star-trek-set-tours + location: Ticonderoga, NY + date: 2020-01-01 + banner: https://cdn.enp.one/img/backgrounds/cl-photo-denver.jpg diff --git a/error/400.html b/error/400.html new file mode 100644 index 0000000..e69de29 diff --git a/error/404.html b/error/404.html new file mode 100644 index 0000000..e69de29 diff --git a/error/500.html b/error/500.html new file mode 100644 index 0000000..e69de29 diff --git a/error/502.html b/error/502.html new file mode 100644 index 0000000..e69de29 diff --git a/explore/index.html b/explore/index.html deleted file mode 100644 index f88480e..0000000 --- a/explore/index.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Explore All Around Here - - - - - - - - - - - - - - -
- -
- -
- -
- - - -
- - - diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6886921 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "allaroundhere.org" +version = "0.0.0" +description = "" +authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"] +license = "MIT" + +[tool.poetry.dependencies] +python = "^3.8" + +[tool.poetry.dev-dependencies] + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" diff --git a/templates/index.html.j2 b/templates/index.html.j2 new file mode 100644 index 0000000..661ebc3 --- /dev/null +++ b/templates/index.html.j2 @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Explore All Around Here + + + + + + + + + + + + + + +
+ +
+ +
+ +
+ + + +
+ + + diff --git a/templates/nginx.conf.d.j2 b/templates/nginx.conf.d.j2 new file mode 100644 index 0000000..e69de29 diff --git a/templates/post.html.j2 b/templates/post.html.j2 new file mode 100644 index 0000000..e69de29