my demiansoft templates
Project description
django-bocor-ds
Introduction
demiansoft homepage templates
Requirements
Django >= 4.2.11 libsass>=0.23.0 django-analyticsds >= 0.3.1 django-calendards >= 0.4.0 django-modalds >= 0.1.0 django-utilsds >= 0.6.0 django-light >= 0.1.0 # 밝은 admin 화면
Install
settings.py
INSTALLED_APPS = [
'django_light', # django.contrib.admin 위에 위치
...
'django.contrib.sitemaps', # 사이트맵 만들기
'django_analyticsds',
'django_utilsds',
'django_calendards',
'django_modalds',
'django_bocor_ds',
]
...
STATICFILES_DIRS = [
os.path.join(BASE_DIR, '_static/'),
]
MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
X_FRAME_OPTIONS = 'SAMEORIGIN'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
in the shell
>> pip install django-bocor-ds
>> python manage.py makemigrations django_calendards django_modalds
>> python manage.py migrate
>> python manage.py createsuperuser
urls.py
from django.contrib import admin
from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('django_bocor_ds.urls')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
Composition
프로젝트 내의 _data 폴더 안에 bocords.py 파일을 생성하고 다음과 같은 형식으로 작성한다.
context = {}
context.update(base)
context.update(seo)
context.update(header)
context.update(hero)
context.update(clients)
context.update(about)
context.update(services)
context.update(features)
context.update(portfolio)
context.update(team)
context.update(pricing)
context.update(faq)
context.update(contact)
context.update(footer)
프로젝트 내의 _static/img 폴더 안에 이미지파일을 넣어준다.
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_bocor_ds-3.0.0.tar.gz
(3.6 MB
view details)
Built Distribution
File details
Details for the file django_bocor_ds-3.0.0.tar.gz
.
File metadata
- Download URL: django_bocor_ds-3.0.0.tar.gz
- Upload date:
- Size: 3.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 331618e53e753bbfc37daef09e301f5c4d80ef411bbaaa323abe841ab8363fb0 |
|
MD5 | b7dc96c1b876a0406ae940c8d5833570 |
|
BLAKE2b-256 | 986a7c092fdaa8b13a2423b8cca82bbe0fae613a8046086c33d7db4a8aaff08a |
File details
Details for the file django_bocor_ds-3.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_bocor_ds-3.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 3.7 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fae1f36a246365511d0cc3bd2ff9564bfaf0118e512dd0b00674ebcdea986cd |
|
MD5 | c674ae1f49209f3a2cc78d3b4b274baa |
|
BLAKE2b-256 | 6c8cac3817ba7835a0af6864be94b2c4fbb65e4f5165eef98384e272167be245 |