Get a basic blog up and running
authorDavid Kerkeslager <kerkeslager@gmail.com>
Thu, 13 Aug 2020 05:16:08 +0000 (01:16 -0400)
committerDavid Kerkeslager <kerkeslager@gmail.com>
Thu, 13 Aug 2020 05:16:08 +0000 (01:16 -0400)
commit9422a20eca5d3d6f9c1b369744532808f5e9d893
tree0b1c4e4755b9db17aa0e18513e0b37697e96111f
parentf11ad06aa0def19169ca60210f644f7b630084e4
Get a basic blog up and running
18 files changed:
core/__init__.py [new file with mode: 0644]
core/admin.py [new file with mode: 0644]
core/apps.py [new file with mode: 0644]
core/migrations/0001_initial.py [new file with mode: 0644]
core/migrations/__init__.py [new file with mode: 0644]
core/models.py [new file with mode: 0644]
core/templates/core/base.html [new file with mode: 0644]
core/templates/core/page_nav.html [new file with mode: 0644]
core/templates/core/post_detail.html [new file with mode: 0644]
core/templates/core/post_list.html [new file with mode: 0644]
core/templates/core/style.css [new file with mode: 0644]
core/tests.py [new file with mode: 0644]
core/urls.py [new file with mode: 0644]
core/views.py [new file with mode: 0644]
requirements.txt
styx/settings.py
styx/urls.py
styx/views.py [deleted file]