new_me / app.py
PranavReddy18's picture
Upload 6 files
a9215b4 verified
raw
history blame contribute delete
456 Bytes
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def home():
return render_template('about.html')
@app.route('/portfolio')
def portfolio():
return render_template('portfolio.html', github_link='https://github.com/ka1817')
@app.route('/contact')
def contact():
return render_template('contact_info.html', email='kattapranavreddy@gmail.com')
if __name__ == '__main__':
app.run(debug=True)