DRY
Don't Repeat Yourself
{% block main %}
{% endblock %}
<link rel="stylesheet" type=text/css href="{{ url_for('static', filename='style.css') }}">
{% extends 'base.html' %}
{% block main %}
{% endblock %}
href="{{ url_for('index') }}"
{% if menu=='master' %} menu-open {% endif%}
{% if submenu=='pembelian' %} active {% endif%}
{{ title }}
Buka: https://replit.com/
Buat akun baru menggunakan google account
2. Copy dan Paste Syntax berikut ini:
Simpan di main.py
3. Membuat folder templates di dalam replit
Buat file baru di dalam folder templates
a. Beri nama home.html
b. Beri nama kontak-saya.html
c. Beri nama tentang-saya.html
Buka: https://replit.com/
Click the following Platforms:
Click the following Platform https://trinket.io/python3
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return "Hello World!"
if __name__ == '__main__':
app.run('0.0.0.0',8080)