base.html 파일 만들기
{% load static %}
<!doctype html>
<html lang="ko"> **// 주 언어 : 한국어**
<head>
<!-- Required meta tags -->
<meta charset="utf-8"> **// 언어 규약**
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="{% static 'bootstrap.min.css' %}">
<!-- pybo CSS -->
<link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
<title>Hello, pybo!</title>
</head>
<body>
<!-- 기본 템플릿 안에 삽입될 내용 Start --> **// block content 와 endblock 안에 들어가는 부분이 직접 입력하는 곳**
{% block content %}
{% endblock %}
<!-- 기본 템플릿 안에 삽입될 내용 End -->
</body>
</html>
연동될 question_list.html에다가 base.html 템플릿 상속해주기
맨 위
맨 아래
<aside> 🥕 base.html 파일을 모르고 pybo 안에 만들었더니 base.html 파일을 애가 못찾음 → template 폴더 아래에 만들기
</aside>