bethany_ds templates for demiansoft
Project description
django-bethany_ds
django-bethany_ds는 bethany_ds 템플릿의 기본형이다.
Quick start
- 본 템플릿은 다음의 필수 앱들이 필요하다. 프로젝트의 settings.py에 다음을 추가한다.
INSTALLED_APPS = [
...
'django.contrib.humanize',
'bethany_ds',
# 필수 컴포넌트
'popup',
'base',
'hero',
# 선택 공통 컴포넌트
'about',
'clients',
'gallery',
'cta',
'services',
'portfolio',
'contact',
'counts',
'whyus',
'faq',
'team',
'appointment',
'testimonials',
]
- static 파일을 저장하기 위해 settings.py에 다음을 추가한다.
STATICFILES_DIRS = [
os.path.join(BASE_DIR, '_static/'),
]
- 프로젝트의 urls.py에 다음을 추가하여 home app과 템플릿에 연결한다.
from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
# ...
path('', include('bethany_ds.urls')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
-
BASE_DIR에 _data폴더를 생성하고 context.py를 생성한다.
-
BASE_DIR에 _static폴더를 생성하고 이미지를 저장한다.
-
데이터베이스 구성
python manage.py makemigrations popup portfolio
python manage.py migrate
- 프레임으로 창을 띄울때 거부하는 문제 해결위해 settings.py에 다음을 주석처리함.
MIDDLEWARE = [
...
# 프레임으로 창을 띄울때 접속을 거부하는 문제 해결
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-bethany_ds-0.1.2.tar.gz
(11.8 kB
view details)
Built Distribution
File details
Details for the file django-bethany_ds-0.1.2.tar.gz
.
File metadata
- Download URL: django-bethany_ds-0.1.2.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 886a4abcae5851af7de4e5466165f9932c43ed786f05a7e51c215601b2c51d0a |
|
MD5 | 67cfb7eddba96af324de6bdc8204a23e |
|
BLAKE2b-256 | 39bc5b38134d14a38bfc9f60bb33d9fa1c4de6885c44aa4a664d3cf2ac3e13bc |
File details
Details for the file django_bethany_ds-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: django_bethany_ds-0.1.2-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6dc0bbd6fab7ed1b93aadba745a86f92a3a5887d6198387f38f5d81bde9c2209 |
|
MD5 | 16528f8d55b0fafc82e52eebf6e472c8 |
|
BLAKE2b-256 | fc4fbae76be28d774342b64d86d1773fed6381366e6f640eda8746deac16b214 |