├── Blog_app
├── __init__.py
├── migrations
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-310.pyc
│ │ ├── __init__.cpython-312.pyc
│ │ ├── 0001_initial.cpython-310.pyc
│ │ ├── 0001_initial.cpython-312.pyc
│ │ ├── 0002_visitcounter.cpython-310.pyc
│ │ ├── 0002_visitcounter.cpython-312.pyc
│ │ ├── 0009_registration.cpython-310.pyc
│ │ ├── 0009_registration.cpython-312.pyc
│ │ ├── 0006_contactmessage.cpython-310.pyc
│ │ ├── 0006_contactmessage.cpython-312.pyc
│ │ ├── 0004_rename_post_django.cpython-310.pyc
│ │ ├── 0004_rename_post_django.cpython-312.pyc
│ │ ├── 0010_delete_registration.cpython-310.pyc
│ │ ├── 0003_development_networking.cpython-310.pyc
│ │ ├── 0003_development_networking.cpython-312.pyc
│ │ ├── 0007_alter_visitcounter_count.cpython-310.pyc
│ │ ├── 0007_alter_visitcounter_count.cpython-312.pyc
│ │ ├── 0008_alter_visitcounter_count.cpython-310.pyc
│ │ ├── 0008_alter_visitcounter_count.cpython-312.pyc
│ │ ├── 0005_development_image_django_image_networking_image.cpython-310.pyc
│ │ └── 0005_development_image_django_image_networking_image.cpython-312.pyc
│ ├── 0010_delete_registration.py
│ ├── 0007_alter_visitcounter_count.py
│ ├── 0008_alter_visitcounter_count.py
│ ├── 0004_rename_post_django.py
│ ├── 0002_visitcounter.py
│ ├── 0006_contactmessage.py
│ ├── 0009_registration.py
│ ├── 0005_development_image_django_image_networking_image.py
│ ├── 0001_initial.py
│ └── 0003_development_networking.py
├── tests.py
├── __pycache__
│ ├── admin.cpython-310.pyc
│ ├── admin.cpython-312.pyc
│ ├── apps.cpython-310.pyc
│ ├── apps.cpython-312.pyc
│ ├── forms.cpython-310.pyc
│ ├── forms.cpython-312.pyc
│ ├── models.cpython-310.pyc
│ ├── models.cpython-312.pyc
│ ├── urls.cpython-310.pyc
│ ├── urls.cpython-312.pyc
│ ├── views.cpython-310.pyc
│ ├── views.cpython-312.pyc
│ ├── __init__.cpython-310.pyc
│ └── __init__.cpython-312.pyc
├── apps.py
├── admin.py
├── forms.py
├── urls.py
├── models.py
└── views.py
├── Blog_site
├── __init__.py
├── __pycache__
│ ├── urls.cpython-310.pyc
│ ├── urls.cpython-312.pyc
│ ├── wsgi.cpython-310.pyc
│ ├── wsgi.cpython-312.pyc
│ ├── __init__.cpython-310.pyc
│ ├── __init__.cpython-312.pyc
│ ├── settings.cpython-310.pyc
│ └── settings.cpython-312.pyc
├── asgi.py
├── wsgi.py
├── urls.py
└── settings.py
├── db.sqlite3
├── homepage_snapshot.png
├── create_post_snapshot.png
├── .gitignore
├── media
└── images
│ ├── Screenshot_from_2024-05-19_01-21-14.png
│ └── Screenshot_from_2024-05-19_01-21-14_8qME8TZ.png
├── requirements.txt
├── .idea
├── vcs.xml
├── .gitignore
├── inspectionProfiles
│ ├── profiles_settings.xml
│ └── Project_Default.xml
├── modules.xml
├── misc.xml
└── Django-Blog.iml
├── templates
├── logged_out.html
├── django_detail.html
├── networking_detail.html
├── development_detail.html
├── create_post.html
├── contact_success.html
├── django.html
├── networking.html
├── development.html
├── sidebar.html
├── social.html
├── register.html
├── login.html
├── contact.html
├── about.html
├── index.html
├── base.html
├── privacy.html
└── support.html
├── manage.py
├── README.md
└── static
└── css
└── base.css
/Blog_app/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Blog_site/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Blog_app/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/db.sqlite3
--------------------------------------------------------------------------------
/Blog_app/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/homepage_snapshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/homepage_snapshot.png
--------------------------------------------------------------------------------
/create_post_snapshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/create_post_snapshot.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # bite compiled stuff
2 | # __pycache__/
3 |
4 | # django stuff
5 | # db.sqlite3
6 |
7 | # environment viriables
8 | .venv
9 | .env
--------------------------------------------------------------------------------
/Blog_app/__pycache__/admin.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/admin.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/admin.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/admin.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/apps.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/apps.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/apps.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/apps.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/forms.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/forms.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/forms.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/forms.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/models.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/models.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/models.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/models.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/urls.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/urls.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/urls.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/urls.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/views.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/views.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/views.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/views.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_site/__pycache__/urls.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_site/__pycache__/urls.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_site/__pycache__/urls.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_site/__pycache__/urls.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_site/__pycache__/wsgi.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_site/__pycache__/wsgi.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_site/__pycache__/wsgi.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_site/__pycache__/wsgi.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/__init__.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/__init__.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/__pycache__/__init__.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/__pycache__/__init__.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_site/__pycache__/__init__.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_site/__pycache__/__init__.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_site/__pycache__/__init__.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_site/__pycache__/__init__.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_site/__pycache__/settings.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_site/__pycache__/settings.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_site/__pycache__/settings.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_site/__pycache__/settings.cpython-312.pyc
--------------------------------------------------------------------------------
/media/images/Screenshot_from_2024-05-19_01-21-14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/media/images/Screenshot_from_2024-05-19_01-21-14.png
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | asgiref<=3.7.2
2 | Django<=5.0.1
3 | npm<=0.1.1
4 | optional-django<=0.1.0
5 | pillow<=10.3.0
6 | sqlparse<=0.4.4
7 | tzdata<=2023.4
8 | gunicorn
9 |
--------------------------------------------------------------------------------
/Blog_app/migrations/__pycache__/__init__.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/migrations/__pycache__/__init__.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/migrations/__pycache__/__init__.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/migrations/__pycache__/__init__.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_app/migrations/__pycache__/0001_initial.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/migrations/__pycache__/0001_initial.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/migrations/__pycache__/0001_initial.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/migrations/__pycache__/0001_initial.cpython-312.pyc
--------------------------------------------------------------------------------
/media/images/Screenshot_from_2024-05-19_01-21-14_8qME8TZ.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/media/images/Screenshot_from_2024-05-19_01-21-14_8qME8TZ.png
--------------------------------------------------------------------------------
/Blog_app/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class BlogAppConfig(AppConfig):
5 | default_auto_field = 'django.db.models.BigAutoField'
6 | name = 'Blog_app'
7 |
--------------------------------------------------------------------------------
/Blog_app/migrations/__pycache__/0002_visitcounter.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/migrations/__pycache__/0002_visitcounter.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/migrations/__pycache__/0002_visitcounter.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/migrations/__pycache__/0002_visitcounter.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_app/migrations/__pycache__/0009_registration.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/migrations/__pycache__/0009_registration.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/migrations/__pycache__/0009_registration.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/migrations/__pycache__/0009_registration.cpython-312.pyc
--------------------------------------------------------------------------------
/Blog_app/migrations/__pycache__/0006_contactmessage.cpython-310.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/migrations/__pycache__/0006_contactmessage.cpython-310.pyc
--------------------------------------------------------------------------------
/Blog_app/migrations/__pycache__/0006_contactmessage.cpython-312.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AvinashAnand02/Django-Blog/HEAD/Blog_app/migrations/__pycache__/0006_contactmessage.cpython-312.pyc
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | You have been successfully logged out. 8 | you can log-in again. 9 |
10 | {% endblock %} 11 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 |{{ django.author }} | {{ django.created_on }}
29 |{{ object.content | safe }}
30 |{{ networking.author }} | {{ networking.created_on }}
29 |{{ object.content | safe }}
30 |{{ development.author }} | {{ development.created_on }}
26 | {% if development.image %} 27 |{{ object.content | safe }}
30 |A platform to share your thoughts and ideas.
33 |{{ django.author }} | {{ django.created_on}}
44 |{{django.content|slice:":200" }}
45 | Read More → 46 |A platform to share your thoughts and ideas.
33 |{{ networking.author }} | {{ networking.created_on}}
44 |{{networking.content|slice:":200" }}
45 | Read More → 46 |A platform to share your thoughts and ideas.
33 |{{ development.author }} | {{ development.created_on}}
44 |{{development.content|slice:":200" }}
45 | Read More → 46 |This awesome blog is made on the top of our favorite full-stack framework 'Django'.
48 | Know more! 49 |Our commitment to protecting your personal information and data privacy.
55 | Know more! 56 |Number of visitors: {{ visit_counter.count }}
62 |48 | Welcome to GiggleGate! We are a passionate community of writers, 49 | thinkers, and creators who love to share our thoughts and ideas with 50 | the world. Our platform provides a space for individuals to express 51 | themselves, connect with like-minded individuals, and engage in 52 | meaningful discussions. 53 |
54 |55 | At GiggleGate, we believe in the power of storytelling. Whether 56 | you're sharing personal experiences, discussing current events, or 57 | exploring new ideas, our platform is here to support and amplify your 58 | voice. 59 |
60 |61 | Our team is dedicated to creating a welcoming and inclusive 62 | environment for all members of our community. We value diversity, 63 | empathy, and respect, and strive to foster a positive and supportive 64 | atmosphere for everyone. 65 |
66 |71 | Our mission at GiggleGate is to empower individuals to share their 72 | voices, foster meaningful connections, and inspire positive change 73 | through storytelling. 74 |
75 |106 | If you have any questions, feedback, or suggestions, please don't 107 | hesitate to contact us. We'd love to hear from you! 108 |
109 |Email: GiggleGate@gmail.com
110 |Phone: +91-7739465519
111 |31 | {{ django.author }} | {{ django.created_on}} 32 |
33 |{{django.content|slice:":200" }}
34 | Read More → 35 |45 | {{ development.author }} | {{ development.created_on}} 46 |
47 |{{development.content|slice:":200" }}
48 | Read More → 49 |59 | {{ networking.author }} | {{ networking.created_on}} 60 |
61 |{{networking.content|slice:":200" }}
62 | Read More → 63 |39 | Welcome to our website! We're dedicated to safeguarding your privacy. 40 | Our privacy policy outlines our commitment to protecting your data. We 41 | ensure transparency in how we collect and use information. Your trust 42 | is paramount, and we prioritize the security of your personal data. 43 | Contact us with any inquiries. 44 |
45 | 46 |48 | We may collect personal information that you provide to us when you 49 | interact with our website. This information may include: 50 |
51 |65 | We use the information we collect for the following purposes: 66 |
67 |
85 | We may share your personal information with third-party service
86 | providers who assist us in operating our website, conducting our
87 | business, or providing services to you. These third parties are
88 | obligated to protect your information and only use it for the purposes
89 | specified by us.
90 | We may also disclose your information in response to a legal request,
91 | such as a subpoena or court order, or when we believe it is necessary
92 | to protect our rights, property, or safety, or the rights, property,
93 | or safety of others.
94 |
98 | We take reasonable measures to protect your personal information from 99 | unauthorized access, use, or disclosure. However, no method of 100 | transmission over the internet or electronic storage is 100% secure, 101 | and we cannot guarantee the absolute security of your data. 102 |
103 | 104 |106 | We may update this Privacy Policy from time to time to reflect changes 107 | in our practices or legal requirements. We will notify you of any 108 | material changes by posting the new Privacy Policy on this page. 109 |
110 | 111 |113 | Contact Us: If you have any questions or concerns about this Privacy 114 | Policy or our practices regarding your personal information, please 115 | contact us at 116 | GiggleGate@gmail.com. 117 |
118 |Show some love ❤️ by starring this repository!
76 | 77 |List of Stargazers 🌟
81 | 82 |