티스토리 뷰
1. 파일 구성은 다음과 같다
2.1 app.py
1
2
3
4
5
6
7
8
9
10
11
12
|
from flask import Flask, render_template
from flask_bootstrap import Bootstrap
app = Flask(__name__)
Bootstrap(app)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == "__main__":
app.run(debug=True)
|
cs |
2.2 index.html
1
2
3
4
5
|
{% extends "base.html" %}
{% block title %}{% endblock %}
{% block content %}
<h1> Test </h1>
{% endblock %}
|
cs |
2.3 base.html
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<h1> Rosy's Website</h1>
{% block content %}
{% endblock %}
</body>
</ht
|
cs |
3. 결과
'Programming > python' 카테고리의 다른 글
[flask-bootstrap] 화면 띄우기 (0) | 2020.06.04 |
---|---|
파이썬 - 파이썬을 파이썬답게 (0) | 2020.04.09 |
python - pandas [3] groupby (0) | 2019.10.07 |
python from itertools import product (0) | 2019.10.07 |
python 멀티 프로세스와 멀티 스레드 (0) | 2019.10.05 |
댓글