├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Makefile ├── README.md ├── blog ├── __init__.py ├── admin.py ├── apps.py ├── feeds.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_comment_parent.py │ ├── 0003_remove_comment_parent.py │ ├── 0004_auto_20191015_0853.py │ ├── 0005_auto_20211014_1338.py │ └── __init__.py ├── models.py ├── sitemaps.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── mysite ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── requirements.txt ├── static └── css │ └── base.css └── templates ├── base.html ├── index.html ├── post_detail.html └── sidebar.html /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/README.md -------------------------------------------------------------------------------- /blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/admin.py -------------------------------------------------------------------------------- /blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/apps.py -------------------------------------------------------------------------------- /blog/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/feeds.py -------------------------------------------------------------------------------- /blog/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/forms.py -------------------------------------------------------------------------------- /blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /blog/migrations/0002_comment_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/migrations/0002_comment_parent.py -------------------------------------------------------------------------------- /blog/migrations/0003_remove_comment_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/migrations/0003_remove_comment_parent.py -------------------------------------------------------------------------------- /blog/migrations/0004_auto_20191015_0853.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/migrations/0004_auto_20191015_0853.py -------------------------------------------------------------------------------- /blog/migrations/0005_auto_20211014_1338.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/migrations/0005_auto_20211014_1338.py -------------------------------------------------------------------------------- /blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/models.py -------------------------------------------------------------------------------- /blog/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/sitemaps.py -------------------------------------------------------------------------------- /blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/tests.py -------------------------------------------------------------------------------- /blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/urls.py -------------------------------------------------------------------------------- /blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/blog/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/manage.py -------------------------------------------------------------------------------- /mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/mysite/settings.py -------------------------------------------------------------------------------- /mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/mysite/urls.py -------------------------------------------------------------------------------- /mysite/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/mysite/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/static/css/base.css -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/post_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/templates/post_detail.html -------------------------------------------------------------------------------- /templates/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAbhijeet/Django_blog/HEAD/templates/sidebar.html --------------------------------------------------------------------------------