From 848aa4e263ea2baa9159de4a7cb12d67460def19 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] !wip --- build.py | 0 error/400.html | 0 error/404.html | 0 error/500.html | 0 error/502.html | 0 explore/config.yaml | 7 ++ explore/index.html | 176 ------------------------------ explore/index.html.j2 | 80 ++++++++++++++ pyproject.toml | 15 +++ {css => static/css}/explore.css | 0 {css => static/css}/style.css | 0 index.html => static/index.html | 0 {js => static/js}/custom.js | 0 robots.txt => static/robots.txt | 0 sitemap.xml => static/sitemap.xml | 0 15 files changed, 102 insertions(+), 176 deletions(-) create mode 100644 build.py create mode 100644 error/400.html create mode 100644 error/404.html create mode 100644 error/500.html create mode 100644 error/502.html create mode 100644 explore/config.yaml delete mode 100644 explore/index.html create mode 100644 explore/index.html.j2 create mode 100644 pyproject.toml rename {css => static/css}/explore.css (100%) rename {css => static/css}/style.css (100%) rename index.html => static/index.html (100%) rename {js => static/js}/custom.js (100%) rename robots.txt => static/robots.txt (100%) rename sitemap.xml => static/sitemap.xml (100%) diff --git a/build.py b/build.py new file mode 100644 index 0000000..e69de29 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/config.yaml b/explore/config.yaml new file mode 100644 index 0000000..36db793 --- /dev/null +++ b/explore/config.yaml @@ -0,0 +1,7 @@ +--- +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/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/explore/index.html.j2 b/explore/index.html.j2 new file mode 100644 index 0000000..661ebc3 --- /dev/null +++ b/explore/index.html.j2 @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/css/explore.css b/static/css/explore.css similarity index 100% rename from css/explore.css rename to static/css/explore.css diff --git a/css/style.css b/static/css/style.css similarity index 100% rename from css/style.css rename to static/css/style.css diff --git a/index.html b/static/index.html similarity index 100% rename from index.html rename to static/index.html diff --git a/js/custom.js b/static/js/custom.js similarity index 100% rename from js/custom.js rename to static/js/custom.js diff --git a/robots.txt b/static/robots.txt similarity index 100% rename from robots.txt rename to static/robots.txt diff --git a/sitemap.xml b/static/sitemap.xml similarity index 100% rename from sitemap.xml rename to static/sitemap.xml