commit d6e3216fc1765b74b9d217b93b9460736cf3b5d2 parent 353ad1db11c23c1bd32fec9cf8494d2fdf22bd48 Author: Erik Letson <hmagellan@hmagellan.com> Date: Sun, 28 Mar 2021 21:49:33 -0500 basic skeleton Diffstat:
A | blogposts/sample.html | | | 0 | |
A | pystatsite.py | | | 1 | + |
A | src/__pycache__/add.cpython-38.pyc | | | 0 | |
A | src/__pycache__/compose.cpython-38.pyc | | | 0 | |
A | src/__pycache__/sync.cpython-38.pyc | | | 0 | |
A | src/add.py | | | 0 | |
A | src/compose.py | | | 1 | + |
A | src/sync.py | | | 0 | |
A | templates/blog.html | | | 0 | |
A | templates/footer.html | | | 0 | |
A | templates/header.html | | | 0 |
11 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/blogposts/sample.html b/blogposts/sample.html diff --git a/pystatsite.py b/pystatsite.py @@ -0,0 +1 @@ +from src import compose, sync, add diff --git a/src/__pycache__/add.cpython-38.pyc b/src/__pycache__/add.cpython-38.pyc Binary files differ. diff --git a/src/__pycache__/compose.cpython-38.pyc b/src/__pycache__/compose.cpython-38.pyc Binary files differ. diff --git a/src/__pycache__/sync.cpython-38.pyc b/src/__pycache__/sync.cpython-38.pyc Binary files differ. diff --git a/src/add.py b/src/add.py diff --git a/src/compose.py b/src/compose.py @@ -0,0 +1 @@ + diff --git a/src/sync.py b/src/sync.py diff --git a/templates/blog.html b/templates/blog.html diff --git a/templates/footer.html b/templates/footer.html diff --git a/templates/header.html b/templates/header.html