Python Django CSS reflété

supposition

Comme il était ambigu de refléter le CSS, je vais le décrire.

【environnement】 os python3.7.3 Django3.0.5

Nom de l'application: sns

【Organisation des fichiers】 sns | - snsproject | | - setting.py | | - urls.py | - snsapp | | - urls.py | | - views.py | - templates | | - sns | | | - index.html | - static | | - css | | | - style.css |manage.py

Sujet principal

Je vais le mettre en œuvre immédiatement.

settings.py


・ ・ ・
INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'sns', #Postscript
]
・ ・ ・
TEMPLATES = [
    {
        'DIRS': [
            os.path.join(BASE_DIR, 'templates'), #Postscript
        ],
            ],
        },
    },
]
・ ・ ・

STATIC_URL = '/static/'

STATICFILES_DIRS = (
    [
        os.path.join(BASE_DIR, "static"), #Postscript
    ]
)

Ensuite, modifiez templates / index.html.

index.html


{% load static %} 
<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>sns</title>
    <link href="{% static 'css/stylesheet.css' %}" rel="stylesheet">
  </head>
  <body>
  </body>
</html>

Le CSS est maintenant reflété.

Recommended Posts

Python Django CSS reflété
Tutoriel Python Django (5)
Tutoriel Python Django (8)
Tutoriel Python Django (6)
Tutoriel Python Django (7)
Tutoriel du didacticiel Python Django
Tutoriel Python Django (3)
Tutoriel Python Django (4)
Django 1.11 a démarré avec Python3.6
Python --Comparez Django css / js
Résumé du didacticiel Python Django
Framework Web Django Python
Table de décalage Django Python
Essayez Debian + Python 3.4 + django1.7 ……
Faites Django avec CodeStar (Python3.6.8, Django2.2.9)
Introduction à Python Django (2) Win
Faites Django avec CodeStar (Python3.8, Django2.1.15)
Python3 + Django ~ Mac ~ avec Apache
Création de liste de tâches [Python Django]
Premiers pas avec Python Django (1)
Premiers pas avec Python Django (3)
Installez Python 3.7 et Django 3.0 (CentOS)
Histoire addictive GAE + python + Django
Introduction à Python Django (6)
Fiche technique du didacticiel Python Django
Premiers pas avec Python Django (5)
La fonction d'authentification Django ne se reflète pas bien
Python
Python practice_Configuration de l'environnement virtuel ~ Installation de Django
Analyse CSS avec cssutils en Python
Créer une nouvelle application utiliser python, django
Django
python + django + scikit-learn + mecab (2) avec heroku
Exécutez python3 Django1.9 avec mod_wsgi (déployer)
Installer le framework Python django à l'aide de pip
Introduction à Python Django (2) Édition Mac
Migrer les applications Django exécutées sur Python 2.7 vers Python 3.5
Environnement CSS créé en 10 minutes avec Django
J'ai une question! (Python, django) Facile
CentOS 6.4, Python 2.7.3, Apache, mod_wsgi, Django
Construction du serveur d'exécution Python (Python + uWSGI + Django + Nginx)
Modifier le HTML et le CSS de la table de décalage Django
[Python] Présentez UIKit3 au projet Django