├── .gitignore ├── core ├── __init__.py ├── asgi.py ├── settings.py ├── storage_backends.py ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── requirements.txt ├── social ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── static └── img │ └── logo.png ├── templates ├── base.html ├── components │ ├── footer.html │ ├── navbar.html │ └── sidebars │ │ └── left │ │ ├── items.html │ │ └── sidebar.html └── pages │ └── index.html └── theme ├── __init__.py ├── apps.py ├── static_src ├── .gitignore ├── bs.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── src │ └── styles.css └── tailwind.config.js └── templates └── base.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/.gitignore -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/storage_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/core/storage_backends.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/core/views.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/requirements.txt -------------------------------------------------------------------------------- /social/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/social/admin.py -------------------------------------------------------------------------------- /social/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/social/apps.py -------------------------------------------------------------------------------- /social/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /social/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/social/models.py -------------------------------------------------------------------------------- /social/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/social/tests.py -------------------------------------------------------------------------------- /social/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/components/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/templates/components/footer.html -------------------------------------------------------------------------------- /templates/components/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/templates/components/navbar.html -------------------------------------------------------------------------------- /templates/components/sidebars/left/items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/templates/components/sidebars/left/items.html -------------------------------------------------------------------------------- /templates/components/sidebars/left/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/templates/components/sidebars/left/sidebar.html -------------------------------------------------------------------------------- /templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/templates/pages/index.html -------------------------------------------------------------------------------- /theme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/theme/apps.py -------------------------------------------------------------------------------- /theme/static_src/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /theme/static_src/bs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/theme/static_src/bs.config.js -------------------------------------------------------------------------------- /theme/static_src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/theme/static_src/package-lock.json -------------------------------------------------------------------------------- /theme/static_src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/theme/static_src/package.json -------------------------------------------------------------------------------- /theme/static_src/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/theme/static_src/postcss.config.js -------------------------------------------------------------------------------- /theme/static_src/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/theme/static_src/src/styles.css -------------------------------------------------------------------------------- /theme/static_src/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/theme/static_src/tailwind.config.js -------------------------------------------------------------------------------- /theme/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/Django-Red-Social/HEAD/theme/templates/base.html --------------------------------------------------------------------------------