├── .gitignore ├── blogq ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── static │ └── css │ │ └── blogq.css ├── templates │ └── blogq │ │ ├── base.html │ │ ├── post_detail.html │ │ ├── post_edit.html │ │ └── post_list.html ├── tests.py ├── urls.py └── views.py ├── manage.py └── mysite ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- 1 | .pyc 2 | __pycache__ 3 | myvenv 4 | db.sqlite3 5 | /static 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /blogq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blogq/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/admin.py -------------------------------------------------------------------------------- /blogq/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/apps.py -------------------------------------------------------------------------------- /blogq/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/forms.py -------------------------------------------------------------------------------- /blogq/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/migrations/0001_initial.py -------------------------------------------------------------------------------- /blogq/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blogq/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/models.py -------------------------------------------------------------------------------- /blogq/static/css/blogq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/static/css/blogq.css -------------------------------------------------------------------------------- /blogq/templates/blogq/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/templates/blogq/base.html -------------------------------------------------------------------------------- /blogq/templates/blogq/post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/templates/blogq/post_detail.html -------------------------------------------------------------------------------- /blogq/templates/blogq/post_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/templates/blogq/post_edit.html -------------------------------------------------------------------------------- /blogq/templates/blogq/post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/templates/blogq/post_list.html -------------------------------------------------------------------------------- /blogq/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/tests.py -------------------------------------------------------------------------------- /blogq/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/urls.py -------------------------------------------------------------------------------- /blogq/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/blogq/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/manage.py -------------------------------------------------------------------------------- /mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/mysite/settings.py -------------------------------------------------------------------------------- /mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/mysite/urls.py -------------------------------------------------------------------------------- /mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ofresh/my-first-blog/HEAD/mysite/wsgi.py --------------------------------------------------------------------------------