Spaces:
Running
Running
| from flask import Flask, render_template | |
| app = Flask(__name__) | |
| def home(): | |
| return render_template('about.html') | |
| def portfolio(): | |
| return render_template('portfolio.html', github_link='https://github.com/ka1817') | |
| def contact(): | |
| return render_template('contact_info.html', email='kattapranavreddy@gmail.com') | |
| if __name__ == '__main__': | |
| app.run(debug=True) | |